Example #1
0
        public void SetExperience(string attribute_id, float experience)
        {
            AttributeLevel attributeLevel = GetAttributeLevel(attribute_id);

            if (attributeLevel != null)
            {
                attributeLevel.SetExperience(experience);
                attributeLevel.Apply(this);
            }
        }