Exemplo n.º 1
0
        public Intermission(GameOptions options, IntermissionInfo info)
        {
            this.options = options;
            this.info    = info;

            this.scores = info.Player;

            this.killCount   = 0;
            this.itemCount   = 0;
            this.secretCount = 0;

            this.InitSinglePLayerStats();

            this.completed = false;
        }
Exemplo n.º 2
0
 public IntermissionInfo()
 {
     this.player = new PlayerScores();
 }