diff --git a/targets/technical/TiltTarget.py b/targets/technical/TiltTarget.py new file mode 100644 index 0000000..6f2bd02 --- /dev/null +++ b/targets/technical/TiltTarget.py @@ -0,0 +1,8 @@ +from Target import Target + +class OutholeTarget(Target): + def __init__(self): + super().__init__(0, 'Tilt') + + def hit(self): + super().hit()