Пример #1
0
 public AttributeModifier(AttributeModifierType type, int attribute)
 {
     Type      = type;
     Attribute = attribute;
 }
Пример #2
0
 public AttributeModifier(AttributeModifier mod)
 {
     Type      = mod.Type;
     Attribute = mod.Attribute;
 }
Пример #3
0
 public AttributeModifier()
 {
     Type      = AttributeModifierType.None;
     Attribute = 0;
 }