コード例 #1
0
 public WormholeCollection()
 {
     this.At = new CollectionIndex <Wormhole, StarData>(x => x.FromStar, x => x.ToStar);
     this.RegisterIndices(this.At);
 }
コード例 #2
0
ファイル: ReportCollection.cs プロジェクト: weshec/Stareater
 public ReportCollection()
 {
     this.Of = new CollectionIndex <IReport, Player>(x => x.Owner);
     this.registerIndices(this.Of);
 }
コード例 #3
0
 public ResearchProgressCollection()
 {
     this.Of = new CollectionIndex <ResearchProgress, Player>(x => x.Owner);
     this.RegisterIndices(this.Of);
 }