Ejemplo n.º 1
0
    public void Damage(int damageCount)
    {
        hp -= damageCount;

        if (hp <= 0)
        {
            BaseScript script = GetComponent <BaseScript>();
            script.GameOver();
        }

        UpdateHealth();
    }