dtmf_dolphin_scene_bluebox.c 434 B

12345678910111213141516
  1. #include "../dtmf_dolphin_i.h"
  2. void dtmf_dolphin_scene_bluebox_on_enter(void *context) {
  3. DTMFDolphinApp* app = context;
  4. view_dispatcher_switch_to_view(app->view_dispatcher, DTMFDolphinViewBluebox);
  5. }
  6. bool dtmf_dolphin_scene_bluebox_on_event(void* context, SceneManagerEvent event) {
  7. UNUSED(context);
  8. UNUSED(event);
  9. return false;
  10. }
  11. void dtmf_dolphin_scene_bluebox_on_exit(void* context) {
  12. UNUSED(context);
  13. }