chuck.js/app/Game/Client/Collision/Detector.js
2013-12-09 16:48:37 +01:00

15 lines
No EOL
259 B
JavaScript
Executable file

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