mirror of https://github.com/AxioDL/metaforce.git
15 lines
304 B
C++
15 lines
304 B
C++
#pragma once
|
|
|
|
#include "Runtime/CIOWin.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
class CConsoleOutputWindow : public CIOWin {
|
|
public:
|
|
CConsoleOutputWindow(int, float, float);
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
|
|
void Draw() override;
|
|
};
|
|
|
|
} // namespace metaforce
|