20 lines
No EOL
346 B
JavaScript
20 lines
No EOL
346 B
JavaScript
(function() {
|
|
var TestCube = function() {
|
|
};
|
|
|
|
|
|
function printID(id, event) {
|
|
print(id);
|
|
}
|
|
|
|
TestCube.prototype = {
|
|
clickDownOnEntity: function(entityID, mouseEvent) {
|
|
printID(entityID);
|
|
},
|
|
startFarTrigger: function() {
|
|
printID();
|
|
}
|
|
};
|
|
|
|
return new TestCube();
|
|
}); |