mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-15 09:24:08 +00:00
neo screen droplets
This commit is contained in:
parent
856e424c76
commit
02c7f8381b
21 changed files with 1072 additions and 8 deletions
|
@ -88,6 +88,7 @@
|
|||
#include "debugmenu.h"
|
||||
#include "postfx.h"
|
||||
#include "custompipes.h"
|
||||
#include "screendroplets.h"
|
||||
#include "crossplatform.h"
|
||||
|
||||
eLevelName CGame::currLevel;
|
||||
|
@ -408,6 +409,9 @@ bool CGame::Initialise(const char* datFile)
|
|||
CPed::Initialise();
|
||||
CRouteNode::Initialise();
|
||||
CEventList::Initialise();
|
||||
#ifdef SCREEN_DROPLETS
|
||||
ScreenDroplets::Initialise();
|
||||
#endif
|
||||
LoadingScreen("Loading the Game", "Find big buildings", nil);
|
||||
CRenderer::Init();
|
||||
LoadingScreen("Loading the Game", "Setup game variables", nil);
|
||||
|
@ -559,6 +563,9 @@ void CGame::ReInitGameObjectVariables(void)
|
|||
CStreaming::LoadAllRequestedModels(false);
|
||||
CPed::Initialise();
|
||||
CEventList::Initialise();
|
||||
#ifdef SCREEN_DROPLETS
|
||||
ScreenDroplets::Initialise();
|
||||
#endif
|
||||
CWeapon::InitialiseWeapons();
|
||||
CPopulation::Initialise();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue