public Replay(int leftStartScore, int rightStartScore) { entries = new CircularEntryQueue(); this.leftStartScore = leftStartScore; this.rightStartScore = rightStartScore; }
public CircularEntryQueue(CircularEntryQueue entries1) { this.entries = new List <ReplayEntry>(entries1.entries); }