13 lines
398 B
C
13 lines
398 B
C
|
#pragma once
|
||
|
#include "../lfrfid-app.h"
|
||
|
|
||
|
class LfRfidAppSceneReadedMenu : 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;
|
||
|
};
|