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

16 lines
No EOL
230 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;
});