9 lines
140 B
Python
9 lines
140 B
Python
from Target import Target
|
|
|
|
|
|
class SecondFixedTarget(Target):
|
|
def __init__(self):
|
|
super()
|
|
|
|
def hit(self):
|
|
super.hit() |