mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 17:04:55 +00:00
More class stubs
This commit is contained in:
23
Runtime/CMFGameBase.hpp
Normal file
23
Runtime/CMFGameBase.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef __RETRO_CMFGAMEBASE_HPP__
|
||||
#define __RETRO_CMFGAMEBASE_HPP__
|
||||
|
||||
#include "CIOWin.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
|
||||
class CMFGameBase : public CIOWin
|
||||
{
|
||||
public:
|
||||
CMFGameBase(const char* name) : CIOWin(name) {}
|
||||
};
|
||||
|
||||
class CMFGameLoaderBase : public CIOWin
|
||||
{
|
||||
public:
|
||||
CMFGameLoaderBase(const char* name) : CIOWin(name) {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __RETRO_CMFGAMEBASE_HPP__
|
||||
Reference in New Issue
Block a user