UNPKG

rock-mod

Version:

Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.

11 lines (10 loc) 645 B
import { type IControlsManager } from "../../../game"; export declare class RageControlsManager implements IControlsManager { disableControlAction(padIndex: number, control: number, disable: boolean): void; isDisabledControlPressed(padIndex: number, control: number): boolean; isDisabledControlJustPressed(padIndex: number, control: number): boolean; isControlPressed(padIndex: number, control: number): boolean; isControlJustPressed(padIndex: number, control: number): boolean; isControlJustReleased(padIndex: number, control: number): boolean; getDisabledControlNormal(padIndex: number, control: number): number; }