chuck.js/app/Game/Core/Collision/Detector.js
2012-07-21 21:52:40 +02:00

14 lines
No EOL
208 B
JavaScript

define(function() {
function Detector() {
}
Detecotr.COLLISION_IDENTIFIER_TILE = "tile";
Detector.prototype.name = function(arguments){
return null;
}
return Detector;
});