mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
17 lines
337 B
C
17 lines
337 B
C
#include "../ble_spam.h"
|
|
|
|
void scene_main_on_enter(void* _ctx) {
|
|
Ctx* ctx = _ctx;
|
|
view_dispatcher_switch_to_view(ctx->view_dispatcher, ViewMain);
|
|
}
|
|
|
|
bool scene_main_on_event(void* _ctx, SceneManagerEvent event) {
|
|
UNUSED(_ctx);
|
|
UNUSED(event);
|
|
return false;
|
|
}
|
|
|
|
void scene_main_on_exit(void* _ctx) {
|
|
UNUSED(_ctx);
|
|
}
|