add example

This commit is contained in:
Brad Hefta-Gaub 2017-03-07 17:55:03 -08:00
parent 8ae6f2727d
commit d7c3677b22

View file

@ -0,0 +1,19 @@
(function() {
var _this;
function DoubleClickExample() {
_this = this;
return;
}
DoubleClickExample.prototype = {
clickDownOnEntity: function() {
print("clickDownOnEntity");
},
doubleclickOnEntity: function() {
print("doubleclickOnEntity");
}
};
return new DoubleClickExample();
});