9 lines
149 B
Python
9 lines
149 B
Python
from src.targets.Target import Target
|
|
|
|
|
|
class LeftDropTarget(Target):
|
|
def __init__(self):
|
|
super()
|
|
|
|
def hit(self):
|
|
super.hit() |