KikooDX 2019-11-05 09:59:03 +01:00
parent 1d1ac0c14d
commit 1a65d6bc64
1 changed files with 4 additions and 2 deletions

@ -12,7 +12,8 @@
- ` ` (space) : empty tile (can't be walked on)
## Example
```levels += [
```python
levels += [
" "+\ # no empty spaces, need to put spaces else the level brake
"#######"+\
"#..+./#"+\
@ -20,4 +21,5 @@
"#..../#"+\
"#######"
]
lvl_dim += [(7, 6)] # level is 7 width and 6 height```
lvl_dim += [(7, 6)] # level is 7 width and 6 height
```