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