2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 18:31:21 +00:00
metaforce/Runtime/GuiSys/CConsoleOutputWindow.cpp
2021-06-07 12:29:18 -07:00

17 lines
503 B
C++

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