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