| 2790 | } |
| 2791 | |
| 2792 | extern "C" int main(int argc, char **argv) { |
| 2793 | if(Initialize() != 0) { |
| 2794 | ShowErrorFmt("Failed to initialize!"); |
| 2795 | return 1; |
| 2796 | } |
| 2797 | |
| 2798 | emscripten_set_main_loop(MainLoop, 0, 1); |
| 2799 | |
| 2800 | Finalize(); |
| 2801 | return 0; |
| 2802 | } |
nothing calls this directly
no test coverage detected