ModelManager.js 228 B

123456789101112
  1. export default class ModelManager{
  2. constructor(){
  3. this.tilesMeshesUUIDs = [];
  4. this.meshesUUIDs = [];
  5. this.pointMeshesUUIDs = [];
  6. }
  7. }
  8. let modelManager = new ModelManager();
  9. export {modelManager}