nfc_scene_debug_emulate.c 372 B

1234567891011121314
  1. #include "../nfc_i.h"
  2. const void nfc_scene_debug_emulate_on_enter(void* context) {
  3. Nfc* nfc = (Nfc*)context;
  4. view_dispatcher_switch_to_view(nfc->nfc_common.view_dispatcher, NfcViewEmulate);
  5. }
  6. const bool nfc_scene_debug_emulate_on_event(void* context, SceneManagerEvent event) {
  7. return false;
  8. }
  9. const void nfc_scene_debug_emulate_on_exit(void* context) {
  10. }