domino-server/src/game/dto/MatchSessionOptions.ts
2024-07-24 22:38:34 +02:00

14 lines
299 B
TypeScript

export interface MatchSessionOptions {
boardScale?: number
handScale?: number
width?: number
height?: number
background: string
teamed: boolean
winTarget: number
winType: 'points' | 'rounds'
seed: string
sessionName: string
numPlayers: 1 | 2 | 3 | 4
turnWaitSeconds: number
}