gbx
Version:
a slim, fast and easy to set up Gamebox (GBX) parser written in TypeScript
28 lines (27 loc) • 613 B
TypeScript
import Node from '../Node';
/**
* Skin of a block.
* @chunk 0x03059000
*/
export default class CGameCtnBlockSkin extends Node {
foregroundPackDesc?: string;
packDesc?: string;
parentPackDesc?: string;
text?: string;
/**
* Text
*/
protected 0x03059000: ({ r }: Chunk, f: ChunkFunctions) => void;
/**
* Skin
*/
protected 0x03059001: ({ r }: Chunk) => void;
/**
* Skin and parent skin
*/
protected 0x03059002: ({ r }: Chunk) => void;
/**
* Secondary skin
*/
protected 0x03059003: ({ r }: Chunk, f: ChunkFunctions) => void;
}