add inheritance to constructor, add const defuse_method

This commit is contained in:
matixezor 2021-03-30 18:46:19 +02:00
parent 9fd954c79b
commit bd753f3e06
2 changed files with 8 additions and 2 deletions

View File

@ -2,4 +2,7 @@ from mine import Mine
class APMine(Mine):
pass
defuse_method = 2
def __init__(self):
super().__init__()

View File

@ -2,4 +2,7 @@ from mine import Mine
class ATMine(Mine):
pass
defuse_method = 1
def __init__(self):
super().__init__()