2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-01 16:53:28 +00:00
metaforce/Runtime/CMFGame.hpp
2015-08-25 15:34:56 -10:00

20 lines
350 B
C++

#ifndef __RETRO_CMFGAME_HPP__
#define __RETRO_CMFGAME_HPP__
#include "CIOWin.hpp"
namespace Retro
{
class CMFGameLoader : public CIOWin
{
public:
CMFGameLoader() : CIOWin("CMFGameLoader") {}
EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue);
void Draw() const;
};
}
#endif // __RETRO_CMFGAME_HPP__