Пример #1
0
 public Replay(int leftStartScore, int rightStartScore)
 {
     entries              = new CircularEntryQueue();
     this.leftStartScore  = leftStartScore;
     this.rightStartScore = rightStartScore;
 }
Пример #2
0
 public CircularEntryQueue(CircularEntryQueue entries1)
 {
     this.entries = new List <ReplayEntry>(entries1.entries);
 }