2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 19:11:20 +00:00
metaforce/Runtime/GuiSys/CConsoleOutputWindow.cpp
2019-07-20 22:42:52 -10:00

17 lines
475 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 {
//SCOPED_GRAPHICS_DEBUG_GROUP("CConsoleOutputWindow::Draw", zeus::skGreen);
}
} // namespace urde