chuck.js/app/Game/Channel/Collision/Detector.js
2014-12-22 01:43:21 +01:00

17 lines
No EOL
231 B
JavaScript
Executable file

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