mirror of https://github.com/PrimeDecomp/prime.git
19 lines
338 B
C++
19 lines
338 B
C++
|
#ifndef _CPREFRONTEND
|
||
|
#define _CPREFRONTEND
|
||
|
|
||
|
#include "MetroidPrime/CIOWin.hpp"
|
||
|
|
||
|
class CPreFrontEnd : public CIOWin {
|
||
|
public:
|
||
|
CPreFrontEnd();
|
||
|
~CPreFrontEnd();
|
||
|
|
||
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&);
|
||
|
void Draw() const;
|
||
|
|
||
|
private:
|
||
|
bool x14_resourceTweaksRegistered;
|
||
|
};
|
||
|
|
||
|
#endif // _CPREFRONTEND
|