2025-01-30 01:30:20 +00:00
|
|
|
#include "twn_loop_c.h"
|
2024-08-26 21:33:37 +00:00
|
|
|
|
2025-01-14 20:20:54 +00:00
|
|
|
#ifndef EMSCRIPTEN
|
2024-08-26 21:33:37 +00:00
|
|
|
#define SDL_MAIN_HANDLED
|
2025-01-14 20:20:54 +00:00
|
|
|
#endif
|
2024-08-26 21:33:37 +00:00
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
SDL_SetMainReady();
|
|
|
|
|
2024-08-26 21:55:44 +00:00
|
|
|
return enter_loop(argc, argv);
|
2024-08-26 21:33:37 +00:00
|
|
|
}
|