thiiiiings

This commit is contained in:
Jonas Zeunert
2020-02-13 19:05:55 +01:00
parent 82f1ad6ed8
commit 7414734dad
719 changed files with 41551 additions and 227 deletions

View 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()

View 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()

View 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()

View 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()

View 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()

View File