mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
10 lines
271 B
C++
10 lines
271 B
C++
template <typename TApp>
|
|
class GenericScene {
|
|
public:
|
|
virtual void on_enter(TApp* app, bool need_restore) = 0;
|
|
virtual bool on_event(TApp* app, typename TApp::Event* event) = 0;
|
|
virtual void on_exit(TApp* app) = 0;
|
|
virtual ~GenericScene(){};
|
|
|
|
private:
|
|
};
|