21 lines
No EOL
240 B
JavaScript
21 lines
No EOL
240 B
JavaScript
(function() {
|
|
var _this;
|
|
|
|
Spring = function() {
|
|
_this = this;
|
|
};
|
|
|
|
Spring.prototype = {
|
|
entityID: null,
|
|
preload: function() {
|
|
|
|
},
|
|
clickReleaseOnEntity: function() {
|
|
|
|
},
|
|
|
|
};
|
|
|
|
return new Spring();
|
|
|
|
}) |