mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 20:49:49 +04:00
12 lines
190 B
C++
12 lines
190 B
C++
#include "scened_app.h"
|
|
|
|
// app enter function
|
|
extern "C" int32_t scened_app(void* p) {
|
|
UNUSED(p);
|
|
ScenedApp* app = new ScenedApp();
|
|
app->run();
|
|
delete app;
|
|
|
|
return 0;
|
|
}
|