Files
townengine/src/twn_main.c

14 lines
200 B
C

#include "twn_loop_c.h"
#ifndef __EMSCRIPTEN__
#define SDL_MAIN_HANDLED
#endif
#include <SDL2/SDL.h>
int main(int argc, char **argv) {
SDL_SetMainReady();
return enter_loop(argc, argv);
}