mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-03-31 14:22:54 -07:00
bb6cc62a9d
Former-commit-id: f18a1963f0
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
|