9 lines
169 B
Python
9 lines
169 B
Python
from Target import Target
|
|
|
|
|
|
class FixedTarget2(Target):
|
|
def __init__(self):
|
|
super().__init__(0, "Fixed Target 2")
|
|
|
|
def hit(self):
|
|
super().hit()() |