mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-16 04:24:45 -07:00
Rename plugins to external
This commit is contained in:
16
applications/external/brainfuck/scenes/brainfuck_scene_dev.c
vendored
Normal file
16
applications/external/brainfuck/scenes/brainfuck_scene_dev.c
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "../brainfuck_i.h"
|
||||
|
||||
void brainfuck_scene_dev_env_on_enter(void* context) {
|
||||
BFApp* app = context;
|
||||
view_dispatcher_switch_to_view(app->view_dispatcher, brainfuckViewDev);
|
||||
}
|
||||
|
||||
bool brainfuck_scene_dev_env_on_event(void* context, SceneManagerEvent event) {
|
||||
UNUSED(context);
|
||||
UNUSED(event);
|
||||
return false;
|
||||
}
|
||||
|
||||
void brainfuck_scene_dev_env_on_exit(void* context) {
|
||||
UNUSED(context);
|
||||
}
|
||||
Reference in New Issue
Block a user