mirror of https://github.com/PrimeDecomp/prime.git
16 lines
298 B
C++
16 lines
298 B
C++
#ifndef _CMFGAMELOADER
|
|
#define _CMFGAMELOADER
|
|
|
|
#include "MetroidPrime/CIOWin.hpp"
|
|
|
|
class CMFGameLoader : public CIOWin {
|
|
|
|
public:
|
|
CMFGameLoader();
|
|
EMessageReturn OnMessage(const CArchitectureMessage& message, CArchitectureQueue& queue);
|
|
private:
|
|
char data[0x1c];
|
|
};
|
|
|
|
#endif // _CMFGAMELOADER
|