This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/flippypass.c

22 lines
319 B
C
Raw Normal View History

2024-08-11 21:23:09 -05:00
// Libraries
#include <furi.h>
2024-08-27 00:11:56 -05:00
2024-08-27 03:12:39 -05:00
#include "backend/ui.h"
2024-08-11 21:23:09 -05:00
// Entry Point
int32_t flippypass_app(void* p) {
// Not using P Parameter
UNUSED(p);
2024-08-26 04:20:00 -05:00
// Creating App
FP_App* app = fp_app_init();
2024-09-01 15:06:44 -05:00
// Running app
fp_app_run(app);
2024-08-26 23:37:32 -05:00
// Cleanup
fp_app_free(app);
2024-08-11 21:23:09 -05:00
// Exit App
return 0;
}