Esempio n. 1
0
 public AbilityArgs(RPGObject caster, int value)
 {
     Caster = caster;
     Value  = value;
 }
Esempio n. 2
0
 public AbilityArgs(RPGObject caster, int value, string[] args)
 {
     Caster = caster;
     Value  = value;
     Args   = args;
 }
Esempio n. 3
0
 public AbilityArgs(RPGObject caster)
 {
     Caster = caster;
 }