예제 #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);
 }