arx-convert
Version:
Converts various Arx Fatalis formats to JSON or YAML and back
11 lines (10 loc) • 444 B
TypeScript
import { BinaryIO } from '../common/BinaryIO.js';
/** @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/graphics/data/FTLFormat.h#L97 */
export type ArxFtlTextureContainer = {
filename: string;
};
export declare class FtlTextureContainer {
static readFrom(binary: BinaryIO<ArrayBufferLike>): ArxFtlTextureContainer;
static accumulateFrom(textureContainer: ArxFtlTextureContainer): ArrayBuffer;
static sizeOf(): number;
}