mirror of https://github.com/PrimeDecomp/prime.git
20 lines
286 B
C++
20 lines
286 B
C++
|
#ifndef _CTWEAKGAME_HPP
|
||
|
#define _CTWEAKGAME_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#include "rstl/string.hpp"
|
||
|
|
||
|
class CTweakGame {
|
||
|
public:
|
||
|
const rstl::string& GetWorldPrefix() { return x4_worldPrefix; }
|
||
|
|
||
|
private:
|
||
|
u32 x0_;
|
||
|
rstl::string x4_worldPrefix;
|
||
|
};
|
||
|
|
||
|
extern CTweakGame* gpTweakGame;
|
||
|
|
||
|
#endif
|