/// import { Buffer } from 'node:buffer'; import { BinaryIO } from '../common/BinaryIO'; import { ArxTEA } from './TEA'; /** @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/animation/AnimationFormat.h#L91 */ export type ArxOldKeyFrame = { num_frame: number; flag_frame: number; master_key_frame: boolean; key_frame: boolean; key_move: boolean; key_orient: boolean; key_morph: boolean; time_frame: number; }; export declare class OldKeyFrame { static readFrom(binary: BinaryIO): ArxOldKeyFrame; static accumulateFrom(json: ArxTEA): Buffer; static sizeOf(): number; }