public void Bowl(int fallenPins)
 {
     if (isTwoPlayerGame)
     {
         multiPlayer.Bowl(fallenPins);
     }
     else
     {
         singlePlayer.Bowl(fallenPins);
     }
 }