mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
31 lines
538 B
C++
31 lines
538 B
C++
#ifdef __EMSCRIPTEN__
|
|
#include <emscripten.h>
|
|
#endif
|
|
|
|
#include "application.h"
|
|
|
|
#include "game_application.h"
|
|
#define APPLICATION_CLASS GameApplication
|
|
|
|
Application *application = nullptr;
|
|
|
|
void handle_frame() {
|
|
application->main_loop();
|
|
}
|
|
|
|
int main(int argc, char *argv[]) {
|
|
application = new APPLICATION_CLASS();
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
emscripten_set_main_loop(handle_frame, 0, 1);
|
|
#else
|
|
|
|
while (application->running) {
|
|
application->main_loop();
|
|
}
|
|
#endif
|
|
|
|
delete application;
|
|
|
|
return 0;
|
|
} |