2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 20:31:21 +00:00
metaforce/Runtime/GuiSys/CConsoleOutputWindow.cpp
2016-09-13 19:54:09 -10:00

21 lines
348 B
C++

#include "CConsoleOutputWindow.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
{
}
}