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.
10 lines (8 loc) • 444 B
TypeScript
/** @noSelfInFile */
declare namespace level_input {
export function action_quick_load(dik: number, bind: number): boolean
export function action_quick_save(dik: number, bind: number): boolean
export function on_key_hold(dik: number, bind: number, dis: boolean): boolean
export function on_key_press(dik: number, bind: number, dis: boolean): boolean
export function on_key_release(dik: number, bind: number, dis: boolean): boolean
}