mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-15 16:52:38 +03:00
f4cc9e5de7
if author want their plugin to be removed - create issue, thanks
10 lines
266 B
C++
10 lines
266 B
C++
#pragma once
|
|
#include "../hid_analyzer_app.h"
|
|
|
|
class HIDAppSceneRead : public GenericScene<HIDApp> {
|
|
public:
|
|
void on_enter(HIDApp* app, bool need_restore) final;
|
|
bool on_event(HIDApp* app, HIDApp::Event* event) final;
|
|
void on_exit(HIDApp* app) final;
|
|
};
|