UNPKG

xcom2charpool

Version:

Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.

45 lines (44 loc) 931 B
import { ByteProperty } from '../../Properties/ByteProperty'; import { StructProperty } from '../../Properties/StructProperty'; export declare const binary: { int_positive: { name: string; value: number; bytes: number[]; }; int_negative: { name: string; value: number; bytes: number[]; }; string: { name: string; value: string; bytes: number[]; }; enum: { name: string; value: ByteProperty; bytes: number[]; }; bool_true: { name: string; value: boolean; bytes: number[]; }; bool_false: { name: string; value: boolean; bytes: number[]; }; array_of_int: { name: string; value: number[]; bytes: number[]; }; struct: { name: string; value: StructProperty; bytes: number[]; }; };