From a1520884ee9a8bfb43f37dc2e9ac88cd2cf8c256 Mon Sep 17 00:00:00 2001 From: Jonas Zeunert Date: Fri, 6 May 2022 23:23:43 +0200 Subject: [PATCH] Add tilt --- targets/technical/TiltTarget.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 targets/technical/TiltTarget.py 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()