Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- #ifndef SCENE_TIME_H
- #define SCENE_TIME_H
-
- #include "Scenes/Scene.h"
-
- class SceneTime : public Scene
- {
- public:
- void Initialize() override;
- void Update() override;
- void Draw(GraphicsEngine *graphics) override;
- void OnButtonClic(BTN btn) override;
- void Destroy() override;
-
- private:
- int8_t m_time;
- };
-
- #endif
|