mirror of https://github.com/PrimeDecomp/prime.git
19 lines
421 B
C++
19 lines
421 B
C++
#ifndef _CERROROUTPUTWINDOW
|
|
#define _CERROROUTPUTWINDOW
|
|
|
|
#include "types.h"
|
|
|
|
#include "MetroidPrime/CIOWin.hpp"
|
|
|
|
class CErrorOutputWindow : public CIOWin {
|
|
public:
|
|
CErrorOutputWindow(bool);
|
|
|
|
~CErrorOutputWindow() override;
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
|
|
bool GetIsContinueDraw() const override;
|
|
void Draw() const override;
|
|
};
|
|
|
|
#endif // _CERROROUTPUTWINDOW
|