2021-06-30 12:02:46 +00:00
|
|
|
#pragma once
|
2022-01-05 16:10:18 +00:00
|
|
|
#include "../lfrfid_app.h"
|
2021-06-30 12:02:46 +00:00
|
|
|
|
|
|
|
class LfRfidAppSceneSavedKeyMenu : public GenericScene<LfRfidApp> {
|
|
|
|
public:
|
|
|
|
void on_enter(LfRfidApp* app, bool need_restore) final;
|
|
|
|
bool on_event(LfRfidApp* app, LfRfidApp::Event* event) final;
|
|
|
|
void on_exit(LfRfidApp* app) final;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void submenu_callback(void* context, uint32_t index);
|
|
|
|
uint32_t submenu_item_selected = 0;
|
|
|
|
};
|