Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.5.30
    Preparing search index...

    Interface RoundAnnouncementProps

    Props for the RoundAnnouncement component

    interface RoundAnnouncementProps {
        countdownDuration?: number;
        currentScore: { player1: number; player2: number };
        isMobile: boolean;
        onCountdownComplete: () => void;
        onSkip: () => void;
        roundNumber: number;
        roundStats?: RoundStats;
        roundWinner: PlayerState | null;
        totalRounds?: number;
    }
    Index

    Properties

    countdownDuration?: number

    Countdown duration in seconds

    currentScore: { player1: number; player2: number }

    Current match score (player1 wins, player2 wins)

    isMobile: boolean

    Whether layout should adapt for mobile screens

    onCountdownComplete: () => void

    Callback when countdown completes

    onSkip: () => void

    Callback when skip button is pressed

    roundNumber: number

    Current round number (1-based)

    roundStats?: RoundStats

    Round statistics to display

    roundWinner: PlayerState | null

    Round winner, or null if round was a draw

    totalRounds?: number

    Total number of rounds in match (for match point detection)