Esempio n. 1
0
 public AmmoEffectData(string Tag = null)
     : base(Tag)
 {
     Type      = new AmmoEffectType();
     Operation = new AmmoEffectOperation();
     Value     = new Single();
 }
Esempio n. 2
0
 public AmmoEffectData(AmmoEffectType Type, AmmoEffectOperation Operation, Single Value)
 {
     this.Type      = Type;
     this.Operation = Operation;
     this.Value     = Value;
 }