Projekt_Sztuczna_Inteligencja/objects/mine_models/standard_mine.py

15 lines
377 B
Python
Raw Normal View History

from .mine import Mine
2021-06-06 22:00:42 +02:00
from disarming.parameters.hash_function import TypeHash
class StandardMine(Mine):
def __init__(self, position, active=True):
self.type = "standard"
super().__init__(TypeHash.STANDARD, position, active)
def disarm(self, wire):
return super().disarm(wire)
def investigate(self):
return super().investigate()