diff --git a/Levels.py-format.md b/Levels.py-format.md index 03804bb..e69764d 100644 --- a/Levels.py-format.md +++ b/Levels.py-format.md @@ -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``` \ No newline at end of file +lvl_dim += [(7, 6)] # level is 7 width and 6 height +``` \ No newline at end of file