moved targets

This commit is contained in:
Jonas Zeunert
2020-01-23 21:37:11 +01:00
parent a4d2822f49
commit d3996200b2
3 changed files with 0 additions and 0 deletions

15
src/targets/BankTarget.py Normal file
View File

@@ -0,0 +1,15 @@
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