UNPKG

mdx-m3-viewer

Version:

A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.

12 lines (11 loc) 309 B
import BinaryStream from '../../common/binarystream'; /** * An unknown chunk. */ export default class UnknownChunk { tag: string; chunk: Uint8Array; constructor(stream: BinaryStream, size: number, tag: string); writeMdx(stream: BinaryStream): void; getByteLength(): number; }