public SaveFileLCS() { SimpleVars = new SimpleVariables(); Scripts = new ScriptData(); Garages = new GarageData(); PlayerInfo = new PlayerInfo(); Stats = new Stats(); }
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); }