Exemple #1
0
 public SaveFileIV(SaveFileIV other)
 {
     Name              = other.Name;
     TimeStamp         = other.TimeStamp;
     SaveVersion       = other.SaveVersion;
     SaveSizeInBytes   = other.SaveSizeInBytes;
     ScriptSpaceSize   = other.ScriptSpaceSize;
     SimpleVars        = new SimpleVariables(other.SimpleVars);
     PlayerInfo        = new Dummy(other.PlayerInfo);
     ExtraContent      = new Dummy(other.ExtraContent);
     Scripts           = new Dummy(other.Scripts);
     Garages           = new Dummy(other.Garages);
     GameLogic         = new Dummy(other.GameLogic);
     Paths             = new Dummy(other.Paths);
     Pickups           = new PickupData(other.Pickups);
     RestartPoints     = new Dummy(other.RestartPoints);
     RadarBlips        = new Dummy(other.RadarBlips);
     Zones             = new Dummy(other.Zones);
     GangData          = new Dummy(other.GangData);
     CarGenerators     = new Dummy(other.CarGenerators);
     Stats             = new Dummy(other.Stats);
     IplStore          = new Dummy(other.IplStore);
     StuntJumps        = new Dummy(other.StuntJumps);
     Radio             = new Dummy(other.Radio);
     Objects           = new Dummy(other.Objects);
     Relationships     = new Dummy(other.Relationships);
     Inventory         = new Dummy(other.Inventory);
     UnusedPools       = new Dummy(other.UnusedPools);
     UnusedPhoneInfo   = new Dummy(other.UnusedPhoneInfo);
     UnusedAudioScript = new Dummy(other.UnusedAudioScript);
     UnusedSetPieces   = new Dummy(other.UnusedSetPieces);
     UnusedStreaming   = new Dummy(other.UnusedStreaming);
     UnusedPedTypeInfo = new Dummy(other.UnusedPedTypeInfo);
     UnusedTags        = new Dummy(other.UnusedTags);
     UnusedShopping    = new Dummy(other.UnusedShopping);
     UnusedGangWars    = new Dummy(other.UnusedGangWars);
     UnusedEntryExits  = new Dummy(other.UnusedEntryExits);
     Unused3dMarkers   = new Dummy(other.Unused3dMarkers);
     UnusedVehicles    = new Dummy(other.UnusedVehicles);
     UnusedExtraBlock  = new Dummy(other.UnusedExtraBlock);
     GfwlData          = new Dummy(other.GfwlData);
 }
Exemple #2
0
 public SaveFileIV()
 {
     Name              = "";
     SimpleVars        = new SimpleVariables();
     PlayerInfo        = new Dummy();
     ExtraContent      = new Dummy();
     Scripts           = new Dummy();
     Garages           = new Dummy();
     GameLogic         = new Dummy();
     Paths             = new Dummy();
     Pickups           = new PickupData();
     RestartPoints     = new Dummy();
     RadarBlips        = new Dummy();
     Zones             = new Dummy();
     GangData          = new Dummy();
     CarGenerators     = new Dummy();
     Stats             = new Dummy();
     IplStore          = new Dummy();
     StuntJumps        = new Dummy();
     Radio             = new Dummy();
     Objects           = new Dummy();
     Relationships     = new Dummy();
     Inventory         = new Dummy();
     UnusedPools       = new Dummy();
     UnusedPhoneInfo   = new Dummy();
     UnusedAudioScript = new Dummy();
     UnusedSetPieces   = new Dummy();
     UnusedStreaming   = new Dummy();
     UnusedPedTypeInfo = new Dummy();
     UnusedTags        = new Dummy();
     UnusedShopping    = new Dummy();
     UnusedGangWars    = new Dummy();
     UnusedEntryExits  = new Dummy();
     Unused3dMarkers   = new Dummy();
     UnusedVehicles    = new Dummy();
     UnusedExtraBlock  = new Dummy();
     GfwlData          = new Dummy();
 }