// Fall down if shouldFall is true.
 void Fall()
 {
     if (shouldFall)
     {
         // Make sure the player is falling.
         player.Fall();
     }
 }