Example #1
0
 public SaveFileLCS()
 {
     SimpleVars = new SimpleVariables();
     Scripts    = new ScriptData();
     Garages    = new GarageData();
     PlayerInfo = new PlayerInfo();
     Stats      = new Stats();
 }
Example #2
0
 public SaveFileLCS(SaveFileLCS other)
 {
     SimpleVars = new SimpleVariables(other.SimpleVars);
     Scripts    = new ScriptData(other.Scripts);
     Garages    = new GarageData(other.Garages);
     PlayerInfo = new PlayerInfo(other.PlayerInfo);
     Stats      = new Stats(other.Stats);
 }