Projekt_Sztuczna_Inteligencja/mine.py

8 lines
214 B
Python
Raw Normal View History

2021-03-12 11:49:19 +01:00
class Mine:
def __init__(self, position, mine_type, active=True):
self.position = position
self.mine_type = mine_type
self.active = active
2021-03-12 21:24:04 +01:00
# more to be added later (e.g. disarming)