prime/include/MetroidPrime/CInGameTweakManager.hpp
Luke Street bed1bb88de Reorganize includes to match asm
Former-commit-id: 848752477e6833629bb0ce30125ca6f5dbffccd1
2022-07-18 18:42:58 -04:00

18 lines
265 B
C++

#ifndef _CINGAMETWEAKMANAGER_HPP
#define _CINGAMETWEAKMANAGER_HPP
#include "types.h"
#include "rstl/string.hpp"
class CInGameTweakManager {
public:
bool ReadFromMemoryCard(const rstl::string&);
private:
};
extern CInGameTweakManager* gpTweakManager;
#endif