Ejemplo n.º 1
0
    new void Start()
    {
        base.Start();

        GuiDamageCounter.Instance = this;

        SetDefaultState();
        AddToGameConfiguration();
    }
Ejemplo n.º 2
0
 public void ApplyDamage(WeaponModel weapon)
 {
     Health -= weapon.Damage;
     GuiDamageCounter.SetDamageCounter(Ennemy.Name, Health, Ennemy.Health);
 }