FINAL GAME SUBMISSION

Got the man chaser to work!
Moved all global variables to nav_game.py so easier to adjust later
This commit is contained in:
Chris Mekelburg
2024-12-14 20:55:55 -05:00
parent ba4a255ca1
commit 7e5420d8bb
14 changed files with 162 additions and 62 deletions

View File

@@ -1,11 +1,12 @@
'''Sets up the mine object.'''
"""Sets up the mine object."""
class Mine:
character = "*"
color = "green"
snack=False
mine=True
chaser=False
def __init__(self,position):