9 lines
168 B
Python
9 lines
168 B
Python
from Target import Target
|
|
|
|
|
|
class RisingBallTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(0, "Rising ball")
|
|
|
|
def hit(self):
|
|
super().hit() |