You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

structures.js 218B

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