moved walls to static map object

This commit is contained in:
Lukas Nöllemeyer 2024-08-17 00:00:01 +02:00
parent a4981d1575
commit 9b85305481
3 changed files with 32 additions and 22 deletions

2
g.py
View file

@ -17,6 +17,8 @@ world: tcod.ecs.Registry
world_map: tcod.map.Map
"""Wall Map of current World"""
world_center: tuple[int,int] = (50, 50)
states: list[game.state.State] = []
"""A stack of states with the last item being the active state."""