예제 #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;
 }