/// import { Buffer } from 'node:buffer'; import { BinaryIO } from '../common/BinaryIO'; /** @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/graphics/data/FastSceneFormat.h#L73 */ export type ArxVertex = { x: number; y: number; z: number; u: number; v: number; llfColorIdx?: number; }; export declare class Vertex { static readFrom(binary: BinaryIO): ArxVertex; static accumulateFrom({ x, y, z, u, v }: ArxVertex): Buffer; static sizeOf(): number; }