Co-authored-by: staubsauger <staubsauger@users.noreply.github.com>

This commit is contained in:
Lukas Nöllemeyer 2024-08-16 23:20:24 +02:00
parent fe5d2bb24e
commit a4981d1575
3 changed files with 16 additions and 8 deletions

3
g.py
View file

@ -14,6 +14,9 @@ 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"""
states: list[game.state.State] = []
"""A stack of states with the last item being the active state."""