mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
779d319069
* RFID and iButton gui update * Grammar nazi: readed -> read * Grammar nazi pt.2: writed -> written Co-authored-by: あく <alleteam@gmail.com>
13 lines
No EOL
387 B
C++
13 lines
No EOL
387 B
C++
#pragma once
|
|
#include "../lfrfid_app.h"
|
|
|
|
class LfRfidAppSceneRetryConfirm : 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 exit_callback(void* context);
|
|
static void stay_callback(void* context);
|
|
}; |