Omnibus's picture
Upload 131 files
4ee4376
raw
history blame contribute delete
141 Bytes
import Phaser from 'phaser';
export default class location extends Phaser.Math.Vector3 {
constructor (x, y, z) {
super(x, y, z);
}
}