/// import { Buffer } from 'node:buffer'; import { BinaryIO } from '../common/BinaryIO'; import { ArxVector3 } from '../types'; /** @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/scene/LevelFormat.h#L168 */ export type ArxPathway = { rpos: ArxVector3; flag: number; time: number; }; export declare class Pathway { static readFrom(binary: BinaryIO): ArxPathway; static allocateFrom(pathway: ArxPathway): Buffer; static sizeOf(): number; }