mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-04 05:55:54 +00:00
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
|