File size: 628 Bytes
4ee4376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
export default class simulation {
  constructor (options) {
    this.scene = options.scene;
    this.common = this.scene.sys.game.common;
    this.cell = options.cell;
    this.data = this.cell.data;

    this.sprites = [];

    this.tick = 0; // current tick
    this.tickFrequency = 10; // how often to update

    this.x = options.cell.x;
    this.y = options.cell.y;
    this.z = options.cell.z;
  }

  create () {

  }

  update () {
    
  }

  sleep () {

  }

  wake () {

  }

  hide () {

  }

  show () {
    
  }

  destroy () {
    this.sprites = [];
  }

  addSprite (sprite) {
    this.sprites.push(sprite);
  }
}