3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-05-27 20:11:34 +02:00
overte-lubosz/script-archive/entityScripts/doubleClickExample.js
Brad Hefta-Gaub d7c3677b22 add example
2017-03-07 17:55:03 -08:00

19 lines
No EOL
381 B
JavaScript

(function() {
var _this;
function DoubleClickExample() {
_this = this;
return;
}
DoubleClickExample.prototype = {
clickDownOnEntity: function() {
print("clickDownOnEntity");
},
doubleclickOnEntity: function() {
print("doubleclickOnEntity");
}
};
return new DoubleClickExample();
});