blob: ca06913283ad0dcbcaf36988eb3480f9fc07339e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef RANDO_CHECK_TRACKER_H
#define RANDO_CHECK_TRACKER_H
#include "Rando/Rando.h"
#include <ship/window/gui/GuiWindow.h>
namespace Rando {
namespace CheckTracker {
void Init();
void OnFileLoad();
class CheckTrackerWindow : public Ship::GuiWindow {
public:
using GuiWindow::GuiWindow;
void InitElement() override{};
void DrawElement() override{};
void Draw() override;
void UpdateElement() override{};
};
class SettingsWindow : public Ship::GuiWindow {
public:
using GuiWindow::GuiWindow;
void InitElement() override{};
void DrawElement() override;
void UpdateElement() override{};
};
} // namespace CheckTracker
} // namespace Rando
typedef enum { SCENE_LOAD, SCENE_UPDATE };
#endif // RANDO_CHECK_TRACKER_H
|