ZhangXianQiang
2024-04-01 bd9cb65c8ee634f1f7bad5a69e891e3a4f46b768
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import EventEmitter from '../utils/eventEmitter';
 
import Map from './map';
 
export default class World extends EventEmitter  {
  constructor(experience) {
    super();
    this.experience = experience;
    this.scene = this.experience.scene;
    this.Map = new Map(this.experience);
  }
 
  update() {
 
  }
}