Split out examplegame defs by items, rooms, and vars

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2021-11-18 13:02:16 -08:00
parent 8a39db2b29
commit 1304b27944
4 changed files with 98 additions and 81 deletions

7
examplegame/vars.py Normal file
View File

@@ -0,0 +1,7 @@
"""
Define all game variables here.
"""
vars = {
"cell_door_open": False,
}