chuck.js/app/Game/Client/GameObjects/SpectatorDoll.js
2014-12-22 01:43:21 +01:00

23 lines
No EOL
448 B
JavaScript

define([
"Game/Core/GameObjects/SpectatorDoll"
],
function (Parent) {
"use strict";
function SpectatorDoll(physicsEngine, uid) {
Parent.call(this, physicsEngine, uid);
}
SpectatorDoll.prototype = Object.create(Parent.prototype);
SpectatorDoll.prototype.render = function() {
// warning is not being called yet!
}
SpectatorDoll.prototype.createMesh = function() {
}
return SpectatorDoll;
});