11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
(function() {
|
||
Script.include("http://hifi-public.s3.amazonaws.com/scripts/libraries/utils.js");
|
||
|
||
whackamole = function(){
|
||
return;
|
||
};
|
||
|
||
// entity scripts always need to return a newly constructed object of our type
|
||
return new whackamole();
|
||
});
|
||
|