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) 319 B
import MdlxSequence from '../../../parsers/mdlx/sequence'; import Bounds from '../../bounds'; /** * An MDX sequence. */ export default class Sequence { name: string; interval: Uint32Array; nonLooping: number; rarity: number; bounds: Bounds; constructor(sequence: MdlxSequence); }