2015-08-18 05:54:43 +00:00
|
|
|
#ifndef __RETRO_GAMEGLOBALOBJECTS_HPP__
|
|
|
|
#define __RETRO_GAMEGLOBALOBJECTS_HPP__
|
|
|
|
|
|
|
|
namespace Retro
|
|
|
|
{
|
|
|
|
|
|
|
|
extern class CMemoryCardSys* g_MemoryCardSys;
|
|
|
|
extern class CResFactory* g_ResFactory;
|
|
|
|
extern class CSimplePool* g_SimplePool;
|
|
|
|
extern class CCharacterFactoryBuilder* g_CharFactoryBuilder;
|
|
|
|
extern class CAiFuncMap* g_AiFuncMap;
|
|
|
|
extern class CGameState* g_GameState;
|
2015-08-27 00:23:46 +00:00
|
|
|
extern class CInGameTweakManagerBase* g_TweakManager;
|
2015-08-18 05:54:43 +00:00
|
|
|
extern class CBooRenderer* g_Renderer;
|
|
|
|
|
2015-11-02 18:45:39 +00:00
|
|
|
extern struct ITweakGame* g_tweakGame;
|
2015-08-31 03:44:42 +00:00
|
|
|
extern struct ITweakPlayer* g_tweakPlayer;
|
|
|
|
extern struct ITweakPlayerControl* g_tweakPlayerControl;
|
2015-08-28 00:11:31 +00:00
|
|
|
|
2015-08-18 05:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __RETRO_GAMEGLOBALOBJECTS_HPP__
|