Exemplo 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);
        }
Exemplo n.º 2
0
 public void Add(DatabaseSingleLevelImportStats other)
 {
     base.Add(other);
     NumSkippedGames += other.NumSkippedGames;
 }
Exemplo n.º 3
0
 public DatabaseSingleLevelImportStats(DatabaseSingleLevelImportStats other) :
     base(other)
 {
     NumSkippedGames = other.NumSkippedGames;
 }