14 lines
196 B
C
14 lines
196 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);
|
|
}
|