metaforce/Runtime/GuiSys/CConsoleOutputWindow.cpp

21 lines
348 B
C++
Raw Normal View History

2016-09-14 05:54:09 +00:00
#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
{
}
}