From 1a65d6bc647ae3fb51ed2f3ba8206bc099717da5 Mon Sep 17 00:00:00 2001 From: KikooDX Date: Tue, 5 Nov 2019 09:59:03 +0100 Subject: [PATCH] --- Levels.py-format.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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