public DatabaseSingleLevelImportStats GetTotal() { DatabaseSingleLevelImportStats total = new DatabaseSingleLevelImportStats(this.StatsByLevel[GameLevel.Engine]); total.Add(this.StatsByLevel[GameLevel.Human]); total.Add(this.StatsByLevel[GameLevel.Server]); return(total); }
public void Add(DatabaseSingleLevelImportStats other) { base.Add(other); this.NumSkippedGames += other.NumSkippedGames; }
public DatabaseSingleLevelImportStats(DatabaseSingleLevelImportStats other) : base(other) { this.NumSkippedGames = other.NumSkippedGames; }