mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 14:12:50 +02:00
19 lines
No EOL
381 B
JavaScript
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();
|
|
}); |