prime/include/MetroidPrime/CErrorOutputWindow.hpp

19 lines
421 B
C++
Raw Normal View History

#ifndef _CERROROUTPUTWINDOW
#define _CERROROUTPUTWINDOW
2022-10-01 06:19:09 +00:00
#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;
2022-11-08 14:23:03 +00:00
void Draw() const override;
2022-10-01 06:19:09 +00:00
};
#endif // _CERROROUTPUTWINDOW