mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
12 lines
194 B
C++
12 lines
194 B
C++
#include "game_application.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
Application *application = memnew(GameApplication());
|
|
|
|
application->start_main_loop();
|
|
|
|
memdelete(application);
|
|
|
|
return 0;
|
|
}
|