Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'applications/scened-app-example/scened-app-launcher.cpp')
-rw-r--r--applications/scened-app-example/scened-app-launcher.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/applications/scened-app-example/scened-app-launcher.cpp b/applications/scened-app-example/scened-app-launcher.cpp
new file mode 100644
index 00000000..58f52f11
--- /dev/null
+++ b/applications/scened-app-example/scened-app-launcher.cpp
@@ -0,0 +1,10 @@
+#include "scened-app.h"
+
+// app enter function
+extern "C" int32_t scened_app(void* p) {
+ ScenedApp* app = new ScenedApp();
+ app->run();
+ delete app;
+
+ return 0;
+}