2016-04-15 03:02:21 +00:00
|
|
|
#include "GameGlobalObjects.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2016-08-15 20:58:07 +00:00
|
|
|
namespace MP1
|
|
|
|
{
|
2016-09-15 07:26:35 +00:00
|
|
|
class CGameArchitectureSupport* g_archSupport = nullptr;
|
2016-08-15 20:58:07 +00:00
|
|
|
}
|
2016-04-15 03:02:21 +00:00
|
|
|
|
2016-09-17 06:40:45 +00:00
|
|
|
class IMain* g_Main = nullptr;
|
2016-04-15 03:02:21 +00:00
|
|
|
class CMemoryCardSys* g_MemoryCardSys = nullptr;
|
|
|
|
class IFactory* g_ResFactory = nullptr;
|
|
|
|
class CSimplePool* g_SimplePool = nullptr;
|
|
|
|
class CCharacterFactoryBuilder* g_CharFactoryBuilder = nullptr;
|
|
|
|
class CAiFuncMap* g_AiFuncMap = nullptr;
|
|
|
|
class CGameState* g_GameState = nullptr;
|
|
|
|
class CInGameTweakManagerBase* g_TweakManager = nullptr;
|
|
|
|
class CBooRenderer* g_Renderer = nullptr;
|
2016-12-14 22:56:59 +00:00
|
|
|
class CStringTable* g_MainStringTable = nullptr;
|
2016-04-15 03:02:21 +00:00
|
|
|
|
2017-01-26 10:06:18 +00:00
|
|
|
ITweakGame* g_tweakGame = nullptr;
|
|
|
|
ITweakPlayer* g_tweakPlayer = nullptr;
|
|
|
|
ITweakPlayerControl* g_tweakPlayerControl = nullptr;
|
|
|
|
ITweakPlayerControl* g_tweakPlayerControlAlt = nullptr;
|
|
|
|
ITweakPlayerControl* g_currentPlayerControl = nullptr;
|
|
|
|
ITweakPlayerGun* g_tweakPlayerGun = nullptr;
|
|
|
|
ITweakGunRes* g_tweakGunRes = nullptr;
|
|
|
|
ITweakPlayerRes* g_tweakPlayerRes = nullptr;
|
|
|
|
ITweakTargeting* g_tweakTargeting = nullptr;
|
|
|
|
ITweakAutoMapper* g_tweakAutoMapper = nullptr;
|
|
|
|
ITweakGui* g_tweakGui = nullptr;
|
|
|
|
ITweakSlideShow* g_tweakSlideShow = nullptr;
|
|
|
|
ITweakParticle* g_tweakParticle = nullptr;
|
|
|
|
ITweakBall* g_tweakBall = nullptr;
|
|
|
|
ITweakGuiColors* g_tweakGuiColors = nullptr;
|
2016-04-15 03:02:21 +00:00
|
|
|
|
|
|
|
}
|