Ejemplo n.º 1
0
 public WormholeCollection()
 {
     this.At = new CollectionIndex <Wormhole, StarData>(x => x.FromStar, x => x.ToStar);
     this.RegisterIndices(this.At);
 }
Ejemplo n.º 2
0
 public ReportCollection()
 {
     this.Of = new CollectionIndex <IReport, Player>(x => x.Owner);
     this.registerIndices(this.Of);
 }
 public ResearchProgressCollection()
 {
     this.Of = new CollectionIndex <ResearchProgress, Player>(x => x.Owner);
     this.RegisterIndices(this.Of);
 }