Files
project_game/gamefiles/mine.py
Chris Mekelburg 7e5420d8bb FINAL GAME SUBMISSION
Got the man chaser to work!
Moved all global variables to nav_game.py so easier to adjust later
2024-12-14 20:55:55 -05:00

15 lines
209 B
Python

"""Sets up the mine object."""
class Mine:
character = "*"
color = "green"
snack=False
mine=True
chaser=False
def __init__(self,position):
self.position = position