示例#1
0
 public InitScreen(TopScores topScores)
 {
     this.topScores = topScores;
 }
 public SubmitScoreScreen(TopScores topScores, int playedScore)
 {
     this.topScores   = topScores;
     this.playedScore = playedScore;
     NextScreen       = !this.topScores.IsTopScore(this.playedScore);
 }