forked from HarbourMasters/Ghostship
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckTracker.h
More file actions
36 lines (25 loc) · 704 Bytes
/
Copy pathCheckTracker.h
File metadata and controls
36 lines (25 loc) · 704 Bytes
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
#ifndef RANDO_CHECK_TRACKER_H
#define RANDO_CHECK_TRACKER_H
#include "port/Rando/Rando.h"
#include <ship/window/gui/GuiWindow.h>
namespace Rando {
namespace CheckTracker {
void Init();
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
#endif // RANDO_CHECK_TRACKER_H