mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
16 lines
254 B
C++
16 lines
254 B
C++
#ifndef _CTWEAKGAME
|
|
#define _CTWEAKGAME
|
|
|
|
#include "rstl/string.hpp"
|
|
|
|
class CTweakGame {
|
|
public:
|
|
const rstl::string& GetPakFile();
|
|
bool GetSplashScreensDisabled();
|
|
int GetTotalPercentage();
|
|
};
|
|
|
|
extern CTweakGame* gpTweakGame;
|
|
|
|
#endif // _CTWEAKGAME
|