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) • 397 B
TypeScript
/** @noSelfInFile */
declare namespace tasks_agent_rescue {
export function generate_squad_loadout(task_id: string): AnyTable
export function join_message(task_id: string, id: number): void
export function leave_message(task_id: string, id: number): void
export function postpone_for_next_frame(task_id: string, squad_id: number): boolean
export function printl(...args: any[]): void
}