mirror of https://github.com/PrimeDecomp/prime.git
18 lines
376 B
C++
18 lines
376 B
C++
#ifndef _CCONSOLEOUTPUTWINDOW_HPP
|
|
#define _CCONSOLEOUTPUTWINDOW_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "MetroidPrime/CIOWin.hpp"
|
|
|
|
class CConsoleOutputWindow : public CIOWin {
|
|
public:
|
|
CConsoleOutputWindow(int, f32, f32);
|
|
|
|
~CConsoleOutputWindow() override;
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
|
|
void Draw() override;
|
|
};
|
|
|
|
#endif
|