Пример #1
0
 private void Fall()
 {
     _bird.Fall();
     if (_ground.Collided(_bird))
     {
         _gameOver = true;
         PlaySound("hit");
         UpdateHighScore();
     }
 }