mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
14 lines
No EOL
214 B
JavaScript
Executable file
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;
|
|
}); |