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.
11 lines (8 loc) • 317 B
TypeScript
/** @noSelfInFile */
import type { Section } from 'anomaly-packer'
declare global {
namespace mob_state_mgr {
export function get_state(ini: system_ini, section: Section.Item, obj: CGameObject): string | undefined
export function set_state(obj: CGameObject, actor: CGameObject, state: string): void
}
}