thiiiiings
This commit is contained in:
9
targets/fixed_targets/FixedTarget1.py
Normal file
9
targets/fixed_targets/FixedTarget1.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class FixedTarget1(Target):
|
||||
def __init__(self):
|
||||
super(0, "Fixed Target 1")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/fixed_targets/FixedTarget2.py
Normal file
9
targets/fixed_targets/FixedTarget2.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class FixedTarget2(Target):
|
||||
def __init__(self):
|
||||
super(0, "Fixed Target 2")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
8
targets/fixed_targets/FixedTarget3.py
Normal file
8
targets/fixed_targets/FixedTarget3.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from targets.Target import Target
|
||||
|
||||
class FixedTarget3(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Fixed Target 3')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/fixed_targets/FixedTarget4.py
Normal file
9
targets/fixed_targets/FixedTarget4.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class FixedTarget4(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Fixed Target 4')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
9
targets/fixed_targets/FixedTarget5.py
Normal file
9
targets/fixed_targets/FixedTarget5.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from targets.Target import Target
|
||||
|
||||
|
||||
class FixedTarget5(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Fixed Target 5')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
0
targets/fixed_targets/__init__.py
Normal file
0
targets/fixed_targets/__init__.py
Normal file
BIN
targets/fixed_targets/__pycache__/FixedTarget1.cpython-38.pyc
Normal file
BIN
targets/fixed_targets/__pycache__/FixedTarget1.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/fixed_targets/__pycache__/FixedTarget2.cpython-38.pyc
Normal file
BIN
targets/fixed_targets/__pycache__/FixedTarget2.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/fixed_targets/__pycache__/FixedTarget3.cpython-38.pyc
Normal file
BIN
targets/fixed_targets/__pycache__/FixedTarget3.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/fixed_targets/__pycache__/FixedTarget4.cpython-38.pyc
Normal file
BIN
targets/fixed_targets/__pycache__/FixedTarget4.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/fixed_targets/__pycache__/FixedTarget5.cpython-38.pyc
Normal file
BIN
targets/fixed_targets/__pycache__/FixedTarget5.cpython-38.pyc
Normal file
Binary file not shown.
BIN
targets/fixed_targets/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
targets/fixed_targets/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user