chuck.js/app/Game/Core/GameObject.js
2013-12-09 16:45:50 +01:00

20 lines
No EOL
271 B
JavaScript

define([
],
function() {
function GameObject() {
this.body = null;
}
GameObject.prototype.render = function() {
return null;
}
GameObject.prototype.getBody = function() {
return this.body;
};
return GameObject;
});