2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_CMFGAME_HPP__
|
|
|
|
#define __URDE_CMFGAME_HPP__
|
2015-08-27 00:23:46 +00:00
|
|
|
|
|
|
|
#include "CMFGameBase.hpp"
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-27 00:23:46 +00:00
|
|
|
{
|
|
|
|
namespace MP1
|
|
|
|
{
|
|
|
|
|
|
|
|
class CMFGame : public CMFGameBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CMFGame() : CMFGameBase("CMFGame") {}
|
|
|
|
CIOWin::EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue);
|
|
|
|
void Draw() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CMFGameLoader : public CMFGameLoaderBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CMFGameLoader() : CMFGameLoaderBase("CMFGameLoader") {}
|
|
|
|
EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue);
|
|
|
|
void Draw() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CMFGAME_HPP__
|