Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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