UNPKG

mdx-m3-viewer

Version:

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

13 lines (12 loc) 367 B
import MdxModelInstance from './modelinstance'; import Attachment from './attachment'; /** * An attachment instance. */ export default class AttachmentInstance { instance: MdxModelInstance; attachment: Attachment; internalInstance: MdxModelInstance; constructor(instance: MdxModelInstance, attachment: Attachment); update(): void; }