コード例 #1
0
ファイル: Replay.cs プロジェクト: vethan/bonobo-qa
 public Replay(int leftStartScore, int rightStartScore)
 {
     entries              = new CircularEntryQueue();
     this.leftStartScore  = leftStartScore;
     this.rightStartScore = rightStartScore;
 }
コード例 #2
0
ファイル: Replay.cs プロジェクト: vethan/bonobo-qa
 public CircularEntryQueue(CircularEntryQueue entries1)
 {
     this.entries = new List <ReplayEntry>(entries1.entries);
 }