@hanabi-live/game
    Preparing search index...

    Interface ActionClue

    interface ActionClue {
        clue: MsgClue;
        giver: PlayerIndex;
        ignoreNegative: boolean;
        list: readonly CardOrder[];
        target: PlayerIndex;
        type: "clue";
    }
    Index

    Properties

    clue: MsgClue

    The player index of the person giving the clue.

    ignoreNegative: boolean
    list: readonly CardOrder[]

    The card orders that were touched by this clue.

    target: PlayerIndex

    The player index of the person being clued.

    type: "clue"