UNPKG

rw-parser

Version:

Parses RenderWare DFF and TXD files into usable format!

12 lines (10 loc) 282 B
export class RwParseError extends Error { constructor(message?: string) { super(message); } } export class RwParseStructureNotFoundError extends RwParseError { constructor(structureName: string) { super(`Structure ${structureName} not found.`); } }