Esempio n. 1
0
        public DatabaseSingleLevelImportStats GetTotal()
        {
            DatabaseSingleLevelImportStats total = new DatabaseSingleLevelImportStats(StatsByLevel[GameLevel.Engine]);

            total.Add(StatsByLevel[GameLevel.Human]);
            total.Add(StatsByLevel[GameLevel.Server]);
            return(total);
        }
Esempio n. 2
0
 public void Add(DatabaseSingleLevelImportStats other)
 {
     base.Add(other);
     NumSkippedGames += other.NumSkippedGames;
 }
Esempio n. 3
0
 public DatabaseSingleLevelImportStats(DatabaseSingleLevelImportStats other) :
     base(other)
 {
     NumSkippedGames = other.NumSkippedGames;
 }