scened_app_launcher.cpp 190 B

1234567891011
  1. #include "scened_app.h"
  2. // app enter function
  3. extern "C" int32_t scened_app(void* p) {
  4. UNUSED(p);
  5. ScenedApp* app = new ScenedApp();
  6. app->run();
  7. delete app;
  8. return 0;
  9. }