metaforce/Runtime/GuiSys/CConsoleOutputWindow.cpp

22 lines
382 B
C++
Raw Normal View History

2016-09-14 05:54:09 +00:00
#include "CConsoleOutputWindow.hpp"
#include "Graphics/CGraphics.hpp"
2016-09-14 05:54:09 +00:00
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
{
}
}