metaforce/Runtime/MP1/CInGameTweakManager.hpp

21 lines
296 B
C++

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