9 lines
152 B
Python
9 lines
152 B
Python
from Target import Target
|
|
|
|
|
|
class UpperPlayfieldRollUnderTarget(Target):
|
|
def __init__(self):
|
|
super()
|
|
|
|
def hit(self):
|
|
super.hit() |