/** * A (round) set of a game for a given economic system. */ export default interface RoundSet { /** * The unique identifier of economic system used for this set. */ readonly ecoSysId: string; /** * The current round of this set, 0 if not started yet, {@link Game.roundsPerSet} + 1 if finished. */ readonly currentRound: number; /** * Rounds where a technological break occured. */ readonly techBreakRounds: ReadonlyArray; }