UNPKG

anomaly-packer

Version:

Anomaly Packer is a utility package for STALKER Anomaly creators to help them develop addons at speed with TypeScript's type-safety and game-oriented build tools.

12 lines (10 loc) 475 B
/** @noSelfInFile */ declare namespace axr_keybind { export function bind(dik_or_bind: string | number, functor: any, alias: string): void export function on_game_start(): void export function on_key_hold(key: number): void export function on_key_press(key: number): void export function on_key_release(key: number): void export function try_key_action(key: number, typ: string): void export function unbind(dik_or_bind: string | number, functor: any): void }