9 lines
149 B
Python
9 lines
149 B
Python
from Target import Target
|
|
|
|
|
|
class LeftPopTarget(Target):
|
|
def __init__(self):
|
|
super(0, "Left Pop")
|
|
|
|
def hit(self):
|
|
super.hit() |