metaforce/Runtime/CInGameTweakManagerBase.hpp

21 lines
312 B
C++
Raw Normal View History

2015-08-27 00:23:46 +00:00
#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__