Black Trigram (흑괘) - API Documentation - v0.2.10
    Preparing search index...

    Interface GameState

    interface GameState {
        currentRound: number;
        isPaused: boolean;
        matchStatistics: MatchStatistics;
        maxRounds: number;
        mode: GameMode;
        phase: GamePhase;
        players: readonly [PlayerState, PlayerState];
        timeRemaining: number;
        winner?: null | PlayerState;
    }
    Index

    Properties

    currentRound: number
    isPaused: boolean
    matchStatistics: MatchStatistics
    maxRounds: number
    mode: GameMode
    phase: GamePhase
    players: readonly [PlayerState, PlayerState]
    timeRemaining: number
    winner?: null | PlayerState