generated from mwc/project_game
Got the man chaser to work! Moved all global variables to nav_game.py so easier to adjust later
15 lines
209 B
Python
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
|
|
|
|
|