clik-engine API
    Preparing search index...

    Interface InputProvider

    Common interface for input providers. Each provider handles one input source (keyboard, touch, gamepad).

    interface InputProvider {
        consumeAction(action: string): boolean;
        destroy(): void;
        isActionDown(action: string): boolean;
        update(): void;
    }

    Implemented by

    Index

    Methods