gbx
Version:
a slim, fast and easy to set up Gamebox (GBX) parser written in TypeScript
15 lines (14 loc) • 352 B
TypeScript
import Node from '../Node';
/**
* Data of an entity in a timeline.
* @chunk 0x0911f000
*/
export default class CPlugEntRecordData extends Node {
compressedData?: number[];
compressedSize?: number;
uncompressedSize?: number;
/**
* Data of the entity
*/
protected 0x0911f000: ({ r }: Chunk, f: ChunkFunctions) => void;
}