moved detector to core

This commit is contained in:
Jeena Paradies 2012-07-21 23:53:33 +02:00
parent b4c59ae7c6
commit 22ae392ace
4 changed files with 58 additions and 27 deletions

View file

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