mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 02:27:43 +00:00
More class stubs
This commit is contained in:
30
Runtime/MP1/CMFGame.hpp
Normal file
30
Runtime/MP1/CMFGame.hpp
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef __RETRO_CMFGAME_HPP__
|
||||
#define __RETRO_CMFGAME_HPP__
|
||||
|
||||
#include "CMFGameBase.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif // __RETRO_CMFGAME_HPP__
|
||||
Reference in New Issue
Block a user