9 lines
164 B
Python
9 lines
164 B
Python
from Target import Target
|
|
|
|
|
|
class RisingBall(Target):
|
|
def __init__(self):
|
|
super().__init__(0, "Rising Ball")
|
|
|
|
def hit(self):
|
|
super().hit()() |