fixed pause menu and made world_map a component of world

This commit is contained in:
Lukas Nöllemeyer 2024-08-17 11:29:39 +02:00
parent bfabba3d82
commit 45e7a8927a
3 changed files with 41 additions and 25 deletions

3
g.py
View file

@ -15,9 +15,6 @@ context: tcod.context.Context
world: tcod.ecs.Registry
"""The active ECS registry and current session."""
world_map: tcod.map.Map
"""Wall Map of current World"""
world_center: tuple[int,int] = Position(50, 50)
screens: list[Screen] = []