mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
16 lines
No EOL
230 B
JavaScript
Executable file
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;
|
|
}); |