mirror of https://github.com/AxioDL/metaforce.git
18 lines
319 B
C++
18 lines
319 B
C++
#pragma once
|
|
|
|
#include "Runtime/CIOWin.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
class CMFGameBase : public CIOWin {
|
|
public:
|
|
explicit CMFGameBase(const char* name) : CIOWin(name) {}
|
|
};
|
|
|
|
class CMFGameLoaderBase : public CIOWin {
|
|
public:
|
|
explicit CMFGameLoaderBase(const char* name) : CIOWin(name) {}
|
|
};
|
|
|
|
} // namespace metaforce
|