metaforce/Runtime/CInGameTweakManagerBase.hpp

21 lines
312 B
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CINGAMETWEAKMANAGERBASE_HPP__
#define __PSHAG_CINGAMETWEAKMANAGERBASE_HPP__
2015-08-27 00:23:46 +00:00
#include <string>
2016-02-13 09:02:47 +00:00
namespace pshag
2015-08-27 00:23:46 +00:00
{
class CInGameTweakManagerBase
{
public:
bool ReadFromMemoryCard(const std::string& name)
{
return true;
}
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CINGAMETWEAKMANAGERBASE_HPP__