2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-05 04:33:28 +00:00
metaforce/Runtime/GuiSys/CConsoleOutputWindow.cpp
2018-12-07 19:30:43 -10:00

15 lines
396 B
C++

#include "CConsoleOutputWindow.hpp"
#include "Graphics/CGraphics.hpp"
namespace urde {
CConsoleOutputWindow::CConsoleOutputWindow(int, float, float) : CIOWin("Console Output Window") {}
CIOWin::EMessageReturn CConsoleOutputWindow::OnMessage(const CArchitectureMessage&, CArchitectureQueue&) {
return EMessageReturn::Normal;
}
void CConsoleOutputWindow::Draw() const {}
} // namespace urde