public void TowerHit()
 {
     Health -= 1;
     PlaySound();
     if (Health <= 0)
     {
         CookieManagerObject.Bloonclick(1);
         PickNewType();
         UpdateBloon();
     }
 }