mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-23 15:00:13 +00:00
17 lines
414 B
C
17 lines
414 B
C
#include "../brainfuck_i.h"
|
|
|
|
void brainfuck_scene_exec_env_on_enter(void* context) {
|
|
BFApp* app = context;
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, brainfuckViewTextBox);
|
|
}
|
|
|
|
bool brainfuck_scene_exec_env_on_event(void* context, SceneManagerEvent event) {
|
|
UNUSED(context);
|
|
UNUSED(event);
|
|
return false;
|
|
}
|
|
|
|
void brainfuck_scene_exec_env_on_exit(void* context) {
|
|
UNUSED(context);
|
|
}
|