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) 278 B
import M3Region from './region'; import { M3StandardMaterial } from './standardmaterial'; /** * An M3 batch. */ export default class M3Batch { region: M3Region; material: M3StandardMaterial; constructor(region: M3Region, material: M3StandardMaterial); }