public void PlayPointWonSound(bool playerWon)
 {
     Game1.playSound(playerWon ? "achievement" : "trashcan");
 }
 public void PlayBallPaddleSound()
 {
     Game1.playSound("smallSelect");
 }