Exemplo n.º 1
0
#pragma warning restore 0649
    public void FillHealthSubPanel(bool realTutorial, MonsterPowers powers = null)
    {
        LanguagesFillers.FillHealthSubPanel(Health, HealthBase, HealthLevel, HealthAbilities);
        if (realTutorial)
        {
            if (powers != null)
            {
                FillValuesWithPowers(powers);
            }
        }
        else
        {
            if (powers != null)
            {
                FillValuesWithPowers(powers);
            }
            else
            {
                FillValuesFictious();
            }
        }
    }