9 lines
172 B
Python
9 lines
172 B
Python
from targets.Target import Target
|
|
|
|
|
|
class FixedTarget4(Target):
|
|
def __init__(self):
|
|
super(100, 'Fixed Target 4')
|
|
|
|
def hit(self):
|
|
super.hit() |