Exemplo n.º 1
0
 private void CheckGhostHit(Ghost ghost)
 {
     if (ghost.CheckPoint(pacman) == true)
     {
         lives--;
         l_lives.Text = "Lives: " + lives;
         bewegung = false;
     }
 }