blob: f5b928179cb7db61e3c29c1ca9fbd15dd39e4aa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef HOOK_DEBUGGER_H
#define HOOK_DEBUGGER_H
#include <ship/window/gui/GuiWindow.h>
class HookDebuggerWindow : public Ship::GuiWindow {
public:
using GuiWindow::GuiWindow;
void InitElement() override;
void DrawElement() override;
void UpdateElement() override{};
};
#endif // HOOK_DEBUGGER_H
|