imporved wall rendering and added floor rendering

This commit is contained in:
Lukas Nöllemeyer 2024-08-18 13:28:14 +02:00
parent b23194ea46
commit f29f067aad
4 changed files with 40 additions and 31 deletions

View file

@ -41,5 +41,7 @@ ACTION_KEYS: Final = {
}
GRASS_CHAR: Final = ord(',')
FLOOR_CHAR: Final = ord('.')
WALL_CHAR: Final = ord('_')
VERTICAL_WALL_CHAR: Final = ord('|')