15 lines
194 B
C++
15 lines
194 B
C++
#define SDL_MAIN_HANDLED
|
|
|
|
#include "Application.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
Application app;
|
|
|
|
bool success = app.Init();
|
|
|
|
if (success)
|
|
app.Run();
|
|
|
|
return 0;
|
|
}
|