Replace # by walls

This commit is contained in:
Yohann D'ANELLO
2020-10-16 18:20:26 +02:00
parent 8818073fc0
commit 2947ffd0c1
3 changed files with 22 additions and 22 deletions

View File

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