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