thiiiiings
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class LeftBankLeft(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, 'Left Bank Left')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class LeftBankMiddleLeft(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, 'Left Bank Middle Left')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class LeftBankMiddleRight(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, 'Left Bank Middle Right')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -0,0 +1,9 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class LeftBankLeft(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Left Bank Right')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -0,0 +1,9 @@
|
||||
from targets.Bank import Bank
|
||||
|
||||
|
||||
class LeftBankTarget(Bank):
|
||||
def __init__(self):
|
||||
super()
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user