11 lines
161 B
C
11 lines
161 B
C
|
|
// Libraries
|
||
|
|
#include <furi.h>
|
||
|
|
|
||
|
|
// Entry Point
|
||
|
|
int32_t flippypass_app(void* p) {
|
||
|
|
// Not using P Parameter
|
||
|
|
UNUSED(p);
|
||
|
|
|
||
|
|
// Exit App
|
||
|
|
return 0;
|
||
|
|
}
|