Beispiel #1
0
 public StatBase(int par1, string par2Str, IStatType par3IStatType)
 {
     IsIndependent = false;
     StatId        = par1;
     StatName      = par2Str;
     Type          = par3IStatType;
 }
 public StatBasic(int par1, string par2Str, IStatType par3IStatType)
     : base(par1, par2Str, par3IStatType)
 {
 }