8 lines
167 B
Python
8 lines
167 B
Python
from Target import Target
|
|
|
|
class ThirdFixedTarget(Target):
|
|
def __init__(self):
|
|
super(100, 'Fixed Target #3')
|
|
|
|
def hit(self):
|
|
super.hit() |