thiiiiings
This commit is contained in:
9
targets/top_bank/TopBank.py
Normal file
9
targets/top_bank/TopBank.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from Target import Target
|
||||
|
||||
|
||||
class TopBank(Target):
|
||||
def __init__(self):
|
||||
super()
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/top_bank/TopBankLeft.py
Normal file
9
targets/top_bank/TopBankLeft.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class TopBankLeft(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, 'Top Bank Left')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/top_bank/TopBankMiddle.py
Normal file
9
targets/top_bank/TopBankMiddle.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class TopBankMiddle(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, "Top Bank Middle")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/top_bank/TopBankMiddleLeft.py
Normal file
9
targets/top_bank/TopBankMiddleLeft.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class TopBankMiddleLeft(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, "Top Bank Middle Left")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/top_bank/TopBankMiddleRight.py
Normal file
9
targets/top_bank/TopBankMiddleRight.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class TopBankMiddleRight(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, "Top Bank Middle Right")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/top_bank/TopBankRight.py
Normal file
9
targets/top_bank/TopBankRight.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.BankTarget import BankTarget
|
||||
|
||||
|
||||
class TopBankRight(BankTarget):
|
||||
def __init__(self):
|
||||
super(100000, "Top Bank Right")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
0
targets/top_bank/__init__.py
Normal file
0
targets/top_bank/__init__.py
Normal file
BIN
targets/top_bank/__pycache__/TopBank.cpython-38.pyc
Normal file
BIN
targets/top_bank/__pycache__/TopBank.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/top_bank/__pycache__/TopBankLeft.cpython-38.pyc
Normal file
BIN
targets/top_bank/__pycache__/TopBankLeft.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/top_bank/__pycache__/TopBankMiddle.cpython-38.pyc
Normal file
BIN
targets/top_bank/__pycache__/TopBankMiddle.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/top_bank/__pycache__/TopBankMiddleLeft.cpython-38.pyc
Normal file
BIN
targets/top_bank/__pycache__/TopBankMiddleLeft.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/top_bank/__pycache__/TopBankMiddleRight.cpython-38.pyc
Normal file
BIN
targets/top_bank/__pycache__/TopBankMiddleRight.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/top_bank/__pycache__/TopBankRight.cpython-38.pyc
Normal file
BIN
targets/top_bank/__pycache__/TopBankRight.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/top_bank/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
targets/top_bank/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user