コード例 #1
0
ファイル: Program.cs プロジェクト: SizeableThink/yahtzee
 public int[] GetScore()
 /// Turns all the scores from the score card into one array for the player. Uses GetScore method from
 /// scorecard class. Same for Human and AI.
 {
     return(score.GetScore());
 }