Exemplo n.º 1
0
 public AttributeModifier(AttributeModifierType type, int attribute)
 {
     Type      = type;
     Attribute = attribute;
 }
Exemplo n.º 2
0
 public AttributeModifier(AttributeModifier mod)
 {
     Type      = mod.Type;
     Attribute = mod.Attribute;
 }
Exemplo n.º 3
0
 public AttributeModifier()
 {
     Type      = AttributeModifierType.None;
     Attribute = 0;
 }