Files
Shipwright/soh/soh/Enhancements/debugger/SohGfxDebuggerWindow.h
T
Philip Dubé 940e3c5696 More pragma once (#7081)
libultraship uses pragma once, we were already using it in many headers
2026-08-16 14:49:44 +00:00

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;
};