mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 12:31:22 +00:00
Normalizes the include paths and makes them consistent. Also adds any missing includes relevant to the interface.
15 lines
300 B
C++
15 lines
300 B
C++
#pragma once
|
|
|
|
#include "Runtime/CIOWin.hpp"
|
|
|
|
namespace urde {
|
|
|
|
class CConsoleOutputWindow : public CIOWin {
|
|
public:
|
|
CConsoleOutputWindow(int, float, float);
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
|
|
void Draw() const override;
|
|
};
|
|
|
|
} // namespace urde
|