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) 262 B
import Sound from './sound'; /** * war3map.w3s - the sound file. */ export default class War3MapW3s { version: number; sounds: Sound[]; load(buffer: ArrayBuffer | Uint8Array): void; save(): Uint8Array; getByteLength(): number; }