Exemple #1
0
 public ControlSystem(ITraitComponent owner)
 {
     this.owner = owner;
 }
Exemple #2
0
 public AOEShot(Data.Traits.AOEShot trait, ITraitComponent owner)
 {
     this.trait = trait;
     Owner      = owner;
 }
Exemple #3
0
 public Armored(Data.Traits.Armored trait, ITraitComponent owner)
 {
     this.trait = trait;
     Owner      = owner;
 }
Exemple #4
0
 public abstract ITraitSystem GetSystem(ITraitComponent owner);
Exemple #5
0
 public Multishot(Data.Traits.Multishot trait, ITraitComponent owner)
 {
     this.trait = trait;
     Owner      = owner;
 }
Exemple #6
0
 public Chainshot(Data.Traits.Chainshot trait, ITraitComponent owner)
 {
     this.trait = trait;
     Owner      = owner;
 }