2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 15:11:21 +00:00
metaforce/Runtime/CInGameTweakManagerBase.hpp
2016-03-04 13:04:53 -10:00

21 lines
311 B
C++

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