metaforce/Runtime/GuiSys/CConsoleOutputWindow.hpp

15 lines
294 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-08-18 05:54:43 +00:00
#include "Runtime/CIOWin.hpp"
2016-09-14 05:54:09 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
2015-08-18 05:54:43 +00:00
2018-12-08 05:30:43 +00:00
class CConsoleOutputWindow : public CIOWin {
2016-09-14 05:54:09 +00:00
public:
2018-12-08 05:30:43 +00:00
CConsoleOutputWindow(int, float, float);
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
void Draw() override;
2015-08-18 05:54:43 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde