xcom2charpool
Version:
Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.
10 lines (9 loc) • 322 B
TypeScript
import type { Reader } from '../Reader';
import type { Writer } from '../Writer';
/**
* Represented by a single byte, 0x00 is False anything else is True
*/
export declare class BoolProperty {
static from(reader: Reader, name: string, size: number): boolean;
static to(target: Writer, value: boolean): number;
}