chuck.js/app/Game/Server/Collision/Detector.js
2012-07-22 13:28:07 +02:00

19 lines
No EOL
360 B
JavaScript

define([
"Lib/Vendor/Box2D",
"Game/Core/Collision/Detector"
],
function(Box2D, Parent) {
function Detector() {
Parent.call(this);
}
Detector.prototype = Object.create(Parent.prototype);
Detector.prototype.handleStand = function(point, isColliding) {
throw "Implement this function";
}
return Detector;
});