mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
20 lines
No EOL
271 B
JavaScript
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;
|
|
|
|
}); |