29 lines
No EOL
766 B
JavaScript
29 lines
No EOL
766 B
JavaScript
//
|
|
// zoneTest.js
|
|
//
|
|
// Created by Zach Fox on 2019-08-07
|
|
// Copyright 2019 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
(function() {
|
|
// Zone Methods
|
|
function ZoneTest() {
|
|
}
|
|
ZoneTest.prototype = {
|
|
preload: function(id) {
|
|
console.log("ZRF HERE preload");
|
|
},
|
|
enterEntity: function () {
|
|
console.log("ZRF HERE enterEntity");
|
|
},
|
|
leaveEntity: function () {
|
|
console.log("ZRF HERE leaveEntity");
|
|
},
|
|
unload: function() {
|
|
console.log("ZRF HERE unload");
|
|
}
|
|
};
|
|
return new ZoneTest();
|
|
}); |