15 lines
377 B
Python
15 lines
377 B
Python
from .mine import Mine
|
|
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()
|