change
This commit is contained in:
14
BankTarget.py
Normal file
14
BankTarget.py
Normal 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
|
||||
Reference in New Issue
Block a user