UNPKG

mdx-m3-viewer

Version:

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

11 lines (10 loc) 329 B
import M3ParserSts from '../../../parsers/m3/sts'; import { AnimationReference } from '../../../parsers/m3/animationreference'; /** * M3 animation data validator. */ export default class M3Sts { animIds: Map<number, number>; constructor(sts: M3ParserSts); hasData(animRef: AnimationReference): boolean; }