Merge branch 'master' of github.com:logsol/chuck.js

This commit is contained in:
logsol 2013-12-09 16:48:46 +01:00
commit b82b02d4ab
7 changed files with 60 additions and 4 deletions

View file

@ -0,0 +1,20 @@
define([
],
function() {
function GameObject() {
this.body = null;
}
GameObject.prototype.render = function() {
return null;
}
GameObject.prototype.getBody = function() {
return this.body;
};
return GameObject;
});