Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. };