| 1234567891011121314 |
- #include "../nfc_i.h"
- const void nfc_scene_debug_emulate_on_enter(void* context) {
- Nfc* nfc = (Nfc*)context;
- view_dispatcher_switch_to_view(nfc->nfc_common.view_dispatcher, NfcViewEmulate);
- }
- const bool nfc_scene_debug_emulate_on_event(void* context, SceneManagerEvent event) {
- return false;
- }
- const void nfc_scene_debug_emulate_on_exit(void* context) {
- }
|