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.
9 lines (7 loc) • 491 B
TypeScript
/** @noSelfInFile */
declare namespace class_registrator {
export function c_register(factory: any, client_object_class: string, clsid: string, script_clsid: string): void
export function cs_register(factory: any, client_object_class: string, server_object_class: string, clsid: string, script_clsid: string): void
export function register(object_factory: any): void
export function s_register(factory: any, server_object_class: string, clsid: string, script_clsid: string): void
}