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 178B

12345678
  1. import Structure from "./Structure.js";
  2. import tiles from "./tiles.js";
  3. export default {
  4. floor: width => new Structure(
  5. [ "collides" ],
  6. tiles.fromLine(width, "grass")),
  7. };