chuck.js/app/Game/Channel/Collision/Detector.js
2014-03-01 14:07:03 +01:00

15 lines
No EOL
215 B
JavaScript
Executable file

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