UNPKG

rock-mod

Version:

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

7 lines (6 loc) 239 B
export interface IKeysManager { isDown(key: number): boolean; isUp(key: number): boolean; bind(key: number, keyHold: boolean, handler: () => void): void; unbind(key: number, keyHold: boolean, handler?: () => void): void; }