arx-convert
Version:
Converts various Arx Fatalis formats to JSON or YAML and back
13 lines (12 loc) • 405 B
TypeScript
import { type ArxColor } from '../common/Color.js';
import { type ArxLight } from './Light.js';
import { type ArxLlfHeader } from './LlfHeader.js';
export type ArxLLF = {
header: Omit<ArxLlfHeader, 'numberOfLights'>;
lights: ArxLight[];
colors: ArxColor[];
};
export declare class LLF {
static load(decompressedFile: ArrayBufferLike): ArxLLF;
static save(json: ArxLLF): ArrayBuffer;
}