mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-08-21 06:48:39 -04:00
940e3c5696
libultraship uses pragma once, we were already using it in many headers
14 lines
307 B
C++
14 lines
307 B
C++
#pragma once
|
|
|
|
#include <libultraship/window/gui/GfxDebuggerWindow.h>
|
|
|
|
class SohGfxDebuggerWindow : public LUS::GfxDebuggerWindow {
|
|
public:
|
|
using GfxDebuggerWindow::GfxDebuggerWindow;
|
|
|
|
protected:
|
|
void InitElement() override;
|
|
void UpdateElement() override;
|
|
void DrawElement() override;
|
|
};
|