import Structure from "./Structure.js"; import Tile from "./Tile.js"; export default { floor: width => new Structure( [ "wall" ], Tile.createLine(width, "grass")), };