コード例 #1
0
ファイル: InitScreen.cs プロジェクト: jakub-klima/px-tetris
 public InitScreen(TopScores topScores)
 {
     this.topScores = topScores;
 }
コード例 #2
0
 public SubmitScoreScreen(TopScores topScores, int playedScore)
 {
     this.topScores   = topScores;
     this.playedScore = playedScore;
     NextScreen       = !this.topScores.IsTopScore(this.playedScore);
 }