export default class Tile { constructor(x, y, name) { this.x = x; this.y = y; this.name = name; } }