metaforce/Runtime/MP1/CInGameTweakManager.hpp

21 lines
296 B
C++
Raw Normal View History

2015-08-17 23:46:41 +00:00
#ifndef __RETRO_CINGAMETWEAKMANAGER_HPP__
#define __RETRO_CINGAMETWEAKMANAGER_HPP__
2015-08-18 05:54:43 +00:00
#include <string>
2015-08-17 23:46:41 +00:00
namespace Retro
{
class CInGameTweakManager
{
2015-08-18 05:54:43 +00:00
public:
bool ReadFromMemoryCard(const std::string& name)
{
return true;
}
2015-08-17 23:46:41 +00:00
};
}
#endif // __RETRO_CINGAMETWEAKMANAGER_HPP__