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