Exemplo n.º 1
0
        public ItemAffix AddExplicitAffix(string name, int tier, int roll)
        {
            var affix = new ItemAffix()
            {
                Name = name,
                Tier = tier,
                Roll = roll
            };

            ExplicitAffixes.Add(affix);
            Character.Dirty = true;
            Dirty           = true;
            return(affix);
        }
Exemplo n.º 2
0
 public void RemoveExplicitAffix(ItemAffix affix)
 {
     ExplicitAffixes.Remove(affix);
     Dirty = true;
 }