コード例 #1
0
 public void UpdateScore(int points)
 {
     if (!IsGameOver)
     {
         score += points;
         scorePanel.ScoreToSprite(score);
     }
 }