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) • 426 B
TypeScript
import { MappedDataRow } from '../../../utils/mappeddata';
import DooDoodad from '../../../parsers/w3x/doo/doodad';
import MdxModel from '../mdx/model';
import War3MapViewerMap from './map';
import { Widget } from './widget';
/**
* A doodad.
*/
export default class Doodad extends Widget {
row: MappedDataRow;
constructor(map: War3MapViewerMap, model: MdxModel, row: MappedDataRow, doodad: DooDoodad);
}