2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 14:31:22 +00:00
metaforce/Runtime/CInGameTweakManagerBase.hpp
2015-08-26 14:23:46 -10:00

21 lines
312 B
C++

#ifndef __RETRO_CINGAMETWEAKMANAGERBASE_HPP__
#define __RETRO_CINGAMETWEAKMANAGERBASE_HPP__
#include <string>
namespace Retro
{
class CInGameTweakManagerBase
{
public:
bool ReadFromMemoryCard(const std::string& name)
{
return true;
}
};
}
#endif // __RETRO_CINGAMETWEAKMANAGERBASE_HPP__