mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
14 lines
193 B
C++
14 lines
193 B
C++
#include "config.h"
|
|
#include "App.h"
|
|
|
|
int main()
|
|
{
|
|
/// Initialize SDL2...
|
|
AllInit();
|
|
/// Call Application Main
|
|
App::Main();
|
|
/// Clean Up SDL2
|
|
AllQuit();
|
|
return 0;
|
|
}
|