mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
15 lines
No EOL
260 B
JavaScript
Executable file
15 lines
No EOL
260 B
JavaScript
Executable file
define([
|
|
"Lib/Vendor/Box2D",
|
|
"Game/Core/Collision/Detector"
|
|
],
|
|
|
|
function (Box2D, Parent) {
|
|
|
|
function Detector (player) {
|
|
Parent.call(this, player);
|
|
}
|
|
|
|
Detector.prototype = Object.create(Parent.prototype);
|
|
|
|
return Detector;
|
|
}); |