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) 349 B
import { HandlerResource } from './handlerresource'; import Bounds from './bounds'; import ModelInstance from './modelinstance'; /** * A model. */ export default abstract class Model extends HandlerResource { bounds: Bounds; /** * Create a new instance and return it. */ abstract addInstance(): ModelInstance; }