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

    Interface CombatControlsProps

    interface CombatControlsProps {
        height?: number;
        isExecutingTechnique?: boolean;
        isPaused: boolean;
        onAttack: () => void;
        onDefend: () => void;
        onGuard?: () => void;
        onPauseToggle: () => void;
        onSwitchStance?: (stance: TrigramStance) => void;
        onTechniqueExecute?: (technique: KoreanTechnique) => void;
        player: PlayerState;
        width?: number;
        x?: number;
        y?: number;
    }
    Index

    Properties

    height?: number
    isExecutingTechnique?: boolean
    isPaused: boolean
    onAttack: () => void
    onDefend: () => void
    onGuard?: () => void
    onPauseToggle: () => void
    onSwitchStance?: (stance: TrigramStance) => void
    onTechniqueExecute?: (technique: KoreanTechnique) => void
    player: PlayerState
    width?: number
    x?: number
    y?: number