Exemplo n.º 1
0
 public SaveFileVC(SaveFileVC other)
 {
     SimpleVars         = new SimpleVariables(other.SimpleVars);
     Scripts            = new Dummy(other.Scripts);
     PedPool            = new PedPool(other.PedPool);
     Garages            = new Dummy(other.Garages);
     GameLogic          = new Dummy(other.GameLogic);
     Vehicles           = new Dummy(other.Vehicles);
     Objects            = new ObjectPool(other.Objects);
     Paths              = new Dummy(other.Paths);
     Cranes             = new Dummy(other.Cranes);
     Pickups            = new Dummy(other.Pickups);
     PhoneInfo          = new Dummy(other.PhoneInfo);
     RestartPoints      = new Dummy(other.RestartPoints);
     RadarBlips         = new Dummy(other.RadarBlips);
     Zones              = new Dummy(other.Zones);
     Gangs              = new Dummy(other.Gangs);
     CarGenerators      = new CarGeneratorData(other.CarGenerators);
     ParticleObjects    = new Dummy(other.ParticleObjects);
     AudioScriptObjects = new Dummy(other.AudioScriptObjects);
     ScriptPaths        = new Dummy(other.ScriptPaths);
     PlayerInfo         = new Dummy(other.PlayerInfo);
     Stats              = new Stats(other.Stats);
     SetPieces          = new Dummy(other.SetPieces);
     Streaming          = new Dummy(other.Streaming);
     PedTypeInfo        = new Dummy(other.PedTypeInfo);
 }
Exemplo n.º 2
0
 public SaveFileVC()
 {
     SimpleVars         = new SimpleVariables();
     Scripts            = new Dummy();
     PedPool            = new PedPool();
     Garages            = new Dummy();
     GameLogic          = new Dummy();
     Vehicles           = new Dummy();
     Objects            = new ObjectPool();
     Paths              = new Dummy();
     Cranes             = new Dummy();
     Pickups            = new Dummy();
     PhoneInfo          = new Dummy();
     RestartPoints      = new Dummy();
     RadarBlips         = new Dummy();
     Zones              = new Dummy();
     Gangs              = new Dummy();
     CarGenerators      = new CarGeneratorData();
     ParticleObjects    = new Dummy();
     AudioScriptObjects = new Dummy();
     ScriptPaths        = new Dummy();
     PlayerInfo         = new Dummy();
     Stats              = new Stats();
     SetPieces          = new Dummy();
     Streaming          = new Dummy();
     PedTypeInfo        = new Dummy();
 }