2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 05:47:42 +00:00

More stubs and main flow layout

This commit is contained in:
Jack Andersen
2015-08-17 19:54:43 -10:00
parent 3112addebd
commit 1b3d5e1d3c
57 changed files with 499 additions and 27 deletions

View File

@@ -0,0 +1,23 @@
#ifndef __RETRO_CINGAMETWEAKMANAGER_HPP__
#define __RETRO_CINGAMETWEAKMANAGER_HPP__
#include <string>
namespace Retro
{
namespace Common
{
class CInGameTweakManager
{
public:
bool ReadFromMemoryCard(const std::string& name)
{
return true;
}
};
}
}
#endif // __RETRO_CINGAMETWEAKMANAGER_HPP__