import Structure from "./Structure.js"; import Tile from "./Tile.js"; export default { floor: (width, height = 1)=> new Structure( [ "wall" ], Tile.createBox(width, height, "ground-top", "ground", "ground")), };