xcom2charpool
Version:
Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.
7 lines (6 loc) • 304 B
TypeScript
import type { Reader } from '../Reader';
import { ArrayOfStructs } from './ArrayOfStructs';
import { ArrayProperty } from '../Properties/ArrayProperty';
export declare class CharacterPoolDataElements extends ArrayOfStructs {
constructor(array: ArrayProperty, factory: (reader: Reader) => unknown);
}