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

    Interface GameSession

    interface GameSession {
        currentRound: number;
        gameMode: GameMode;
        id: string;
        isGameOver: boolean;
        isPaused: boolean;
        maxRounds: number;
        players: readonly [PlayerState, PlayerState];
        roundTimeLimit: number;
        timeRemaining: number;
        winner: null | PlayerState;
    }
    Index

    Properties

    currentRound: number
    gameMode: GameMode
    id: string
    isGameOver: boolean
    isPaused: boolean
    maxRounds: number
    players: readonly [PlayerState, PlayerState]
    roundTimeLimit: number
    timeRemaining: number
    winner: null | PlayerState