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

    Interface ActionFeedbackActions

    Action feedback actions interface

    interface ActionFeedbackActions {
        addActionFeedback: (
            type: ActionFeedbackType,
            text: string,
            textKorean: string,
            position: Position,
        ) => void;
        addDamageNumber: (
            damage: number,
            position: Position,
            type?: DamageType,
        ) => void;
        clearExpired: () => void;
        hideTechnique: () => void;
        incrementCombo: () => void;
        resetCombo: () => void;
        showTechnique: (korean: string, english: string) => void;
    }
    Index

    Properties

    addActionFeedback: (
        type: ActionFeedbackType,
        text: string,
        textKorean: string,
        position: Position,
    ) => void
    addDamageNumber: (damage: number, position: Position, type?: DamageType) => void
    clearExpired: () => void
    hideTechnique: () => void
    incrementCombo: () => void
    resetCombo: () => void
    showTechnique: (korean: string, english: string) => void