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