mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-08-21 14:55:27 -04:00
940e3c5696
libultraship uses pragma once, we were already using it in many headers
13 lines
261 B
C++
13 lines
261 B
C++
#pragma once
|
|
|
|
#include <ship/window/gui/GuiWindow.h>
|
|
|
|
class HookDebuggerWindow final : public Ship::GuiWindow {
|
|
public:
|
|
using GuiWindow::GuiWindow;
|
|
|
|
void InitElement() override;
|
|
void DrawElement() override;
|
|
void UpdateElement() override{};
|
|
};
|