Files
Shipwright/soh/soh/Enhancements/debugger/SohConsoleWindow.h
T
Philip Dubé 2f32abb511 Console include cleanup (#6413)
Looking into fixing warnings about commands already being bound,
LUS initializes a console window which we ignore,
but it registers global command handlers,
SohConsoleWindow does this again, but that's also where mInputBuffer/mFilterBuffer get set

Proper fix would be removing SohConsoleWindow, but it exists to have mono font
2026-03-26 14:18:21 +00:00

16 lines
307 B
C++

#ifndef SOH_CONSOLE_H
#define SOH_CONSOLE_H
#include <ship/window/gui/GuiWindow.h>
#include <ship/window/gui/ConsoleWindow.h>
class SohConsoleWindow : public Ship::ConsoleWindow {
public:
using ConsoleWindow::ConsoleWindow;
protected:
void DrawElement() override;
};
#endif // SOH_CONSOLE_H