This commit is contained in:
Jonas Zeunert
2020-03-11 23:53:05 +01:00
parent 46b07b3889
commit 45c733989f
87 changed files with 42 additions and 46 deletions

14
BankTarget.py Normal file
View File

@@ -0,0 +1,14 @@
from Target import Target
class BankTarget(Target):
def __init__(self, points):
super(points)
self.is_hit = False
def hit(self):
self.is_hit = True
super.hit()
#notify Bank
def reset(self):
self.is_hit = False