private void UpdateHealthBar()
 {
     // On all changes of actual value of some progress
     // you need to send this changes to appropriate progress bar
     healthUpdateData.CurrentValue = currentHealth;
     HealthExampleTreeProgressBar.UpdateProgress(healthUpdateData);
 }