mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
15 lines • 422 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const handlerresource_1 = require("./handlerresource");
const bounds_1 = require("./bounds");
/**
* A model.
*/
class Model extends handlerresource_1.HandlerResource {
constructor() {
super(...arguments);
this.bounds = new bounds_1.default();
}
}
exports.default = Model;
//# sourceMappingURL=model.js.map