Example #1
0
 public ShipGroupCollection()
 {
     this.WithDesign = new ScalarIndex <ShipGroup, Design>(x => x.Design);
     this.registerIndices(this.WithDesign);
 }
Example #2
0
 public StarCollection()
 {
     this.At = new ScalarIndex <StarData, Vector2D>(x => x.Position);
     this.registerIndices(this.At);
 }
Example #3
0
 public PlayerProcessorCollection()
 {
     this.Of = new ScalarIndex <PlayerProcessor, Player>(x => x.Player);
     this.RegisterIndices(this.Of);
 }