UNPKG

arx-convert

Version:

Converts various Arx Fatalis formats to JSON or YAML and back

17 lines (16 loc) 472 B
import { BinaryIO } from '../common/BinaryIO.js'; /** * @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/graphics/data/FastSceneFormat.h#L68 */ export type ArxUniqueHeader = { path: string; /** * 512 bytes */ check: number[]; }; export declare class UniqueHeader { static readFrom(binary: BinaryIO<ArrayBufferLike>): ArxUniqueHeader; static accumulateFrom(uniqueHeader: ArxUniqueHeader): ArrayBuffer; static sizeOf(): number; }