Files
flippr-game/src/targets/BankTarget.py
Jonas Zeunert d3996200b2 moved targets
2020-01-23 21:37:11 +01:00

15 lines
273 B
Python

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