void AddHealth(Health health, float value)
 {
     if (health == null)
     {
         return;
     }
     health.maxHealth += value;
     health.AddHp(health.maxHealth);
 }