8 lines
173 B
Python
8 lines
173 B
Python
from src.targets.Target import Target
|
|
|
|
class RightDropTarget(Target):
|
|
def __init__(self):
|
|
super(100, 'Right Drop Target')
|
|
|
|
def hit(self):
|
|
super.hit() |