2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-06 15:53:28 +00:00
metaforce/Runtime/MP1/CInGameTweakManager.hpp
2015-08-18 12:51:54 -10:00

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__