Files
flippr-game/targets/BankTarget.py
Jonas Zeunert 7414734dad thiiiiings
2020-02-13 19:05:55 +01:00

14 lines
280 B
Python

from targets.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