File size: 141 Bytes
4ee4376
 
 
 
 
 
 
1
2
3
4
5
6
7
import Phaser from 'phaser';

export default class location extends Phaser.Math.Vector3 {
  constructor (x, y, z) {
    super(x, y, z);
  }
}