mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01: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();
|
|
}); |