9 lines
174 B
Python
9 lines
174 B
Python
from Target import Target
|
|
|
|
|
|
class RightPopTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(100, 'Right Pop')
|
|
|
|
def hit(self):
|
|
super().hit() |