19 lines
No EOL
417 B
JavaScript
19 lines
No EOL
417 B
JavaScript
(function() {
|
|
var _this = this;
|
|
|
|
_this.preload = function(entityID) {
|
|
print("Loading test script");
|
|
_this.entityID = entityID;
|
|
};
|
|
|
|
_this.startNearGrab = function(entityID, args) {
|
|
print("startNearGrab");
|
|
};
|
|
|
|
_this.startDistanceGrab = function(entityID, args) {
|
|
print("startDistanceGrab");
|
|
};
|
|
|
|
_this.unload = function(entityID) {
|
|
};
|
|
}) |