2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-11 02:59:06 +00:00
metaforce/Runtime/CMFGame.hpp
2015-08-19 16:52:07 -10:00

20 lines
340 B
C++

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