mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 01:11:20 +00:00
18 lines
263 B
C++
18 lines
263 B
C++
#pragma once
|
|
|
|
#include "CIOWin.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CConsoleOutputWindow : public CIOWin
|
|
{
|
|
public:
|
|
CConsoleOutputWindow(int, float, float);
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&);
|
|
void Draw() const;
|
|
};
|
|
|
|
}
|
|
|