mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-08-01 00:18:58 -04:00
2f32abb511
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
16 lines
307 B
C++
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
|