Replace # by walls

This commit is contained in:
Yohann D'ANELLO
2020-10-16 18:20:26 +02:00
committed by Nicolas Margulies
parent d8bd500349
commit 3467fb622c
3 changed files with 22 additions and 22 deletions

View File

@ -51,7 +51,7 @@ class Map:
class Tile(Enum):
EMPTY = ' '
WALL = '#'
WALL = ''
FLOOR = '.'
def is_wall(self) -> bool: