sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
9 lines (8 loc) • 732 B
TypeScript
export declare function decompress8bit(data: Uint8Array): Uint8Array<ArrayBuffer>;
export declare function decompress32bit(data: Uint8Array): Uint8Array<ArrayBuffer>;
export declare function decompress24bit(data: Uint8Array): Uint8Array<ArrayBuffer>;
export declare function decompress1555(data: Uint8Array): Uint8Array<ArrayBuffer>;
export declare function decompress565(data: Uint8Array): Uint8Array<ArrayBuffer>;
export declare function decompress444(data: Uint8Array): Uint8Array<ArrayBuffer>;
export declare function decompressDXT3(dxtData: Uint8Array, width: number, height: number): Uint8Array<ArrayBuffer>;
export declare function decompressDXT1(dxtData: Uint8Array, width: number, height: number): Uint8Array<ArrayBuffer>;