9 lines
179 B
Python
9 lines
179 B
Python
from Target import Target
|
|
|
|
|
|
class FixedTarget5(Target):
|
|
def __init__(self):
|
|
super().__init__(30000, 'Fixed Target 5')
|
|
|
|
def hit(self):
|
|
super().hit() |