Exemple #1
0
 private BodyTrait(BodyTraitType type, LocationBody location, IkonComposite loadData)
 {
     this.Type   = type;
     this.Effect = type.Effect.Load(location, this, loadData);
 }
Exemple #2
0
 private BodyTrait(BodyTraitType type, ITraitEffect effect)
 {
     this.Type   = type;
     this.Effect = effect;
 }
Exemple #3
0
 private BodyTrait(BodyTraitType type, LocationBody location)
 {
     this.Type   = type;
     this.Effect = type.Effect.Instantiate(location, this);
 }