chuck.js/app/Game/Client/Collision/Detector.js
2014-01-21 03:14:50 +01:00

14 lines
No EOL
214 B
JavaScript
Executable file

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