示例#1
0
文件: Game.cs 项目: kindohm/tanks
 void currentRound_RoundOver(object sender, RoundEventArgs e)
 {
     this.UpdateGameStatus();
 }
示例#2
0
文件: Game.cs 项目: kindohm/tanks
 void currentRound_ScoreChanged(object sender, RoundEventArgs e)
 {
     this.Score = this.previousRoundsScore + e.Round.Score;
 }
示例#3
0
文件: TankView.cs 项目: kindohm/tanks
 void round_RoundOver(object sender, RoundEventArgs e)
 {
     this.newRoundWaitCount = 0;
     this.waitForNewRound = true;
 }