UNPKG

mdx-m3-viewer

Version:

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

14 lines (13 loc) 320 B
import BinaryStream from '../../../common/binarystream'; /** * A map title. */ export default class MapTitle { visible: number; chapterTitle: string; mapTitle: string; path: string; load(stream: BinaryStream): void; save(stream: BinaryStream): void; getByteLength(): number; }