prime/include/MetroidPrime/CErrorOutputWindow.hpp
Henrique Gemignani Passos Lima 1dd0e2ad4d Fix override usage
Former-commit-id: 989015db6a75ef1f545117c12fd5b2add6ce82c6
2022-11-08 16:23:03 +02:00

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