prime/include/MetroidPrime/CErrorOutputWindow.hpp
Luke Street adb54a9892 Symbol fixes, headers & main progress
Former-commit-id: 6944a14e890aff84111901c37e9a7b96a3e38517
2022-10-01 02:19:15 -04:00

19 lines
400 B
C++

#ifndef _CERROROUTPUTWINDOW_HPP
#define _CERROROUTPUTWINDOW_HPP
#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() override;
};
#endif