metaforce/Runtime/CInGameTweakManagerBase.hpp

21 lines
308 B
C++
Raw Normal View History

2016-04-12 23:07:23 -07:00
#ifndef __URDE_CINGAMETWEAKMANAGERBASE_HPP__
#define __URDE_CINGAMETWEAKMANAGERBASE_HPP__
2015-08-26 17:23:46 -07:00
#include <string>
2016-03-04 15:04:53 -08:00
namespace urde
2015-08-26 17:23:46 -07:00
{
class CInGameTweakManagerBase
{
public:
bool ReadFromMemoryCard(const std::string& name)
{
return true;
}
};
}
2016-04-12 23:07:23 -07:00
#endif // __URDE_CINGAMETWEAKMANAGERBASE_HPP__