11 lines
213 B
Python
11 lines
213 B
Python
from .mine import Mine
|
|
|
|
|
|
class StandardMine(Mine):
|
|
def __init__(self, position, active=True):
|
|
self.mine_type = "standard"
|
|
super().__init__(position, active)
|
|
|
|
def disarm(self):
|
|
pass
|