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