9 lines
154 B
Python
9 lines
154 B
Python
from targets.Target import Target
|
|
|
|
|
|
class CreditTarget(Target):
|
|
def __init__(self):
|
|
super(0, 'Credit')
|
|
|
|
def hit(self):
|
|
super.hit() |