added the base AI function names (did not write anything yet)
This commit is contained in:
parent
a118fcc3d6
commit
fd7bc8fcb8
|
@ -66,6 +66,12 @@ class Player(object):
|
||||||
outString += f"{name[0]}."
|
outString += f"{name[0]}."
|
||||||
return outString
|
return outString
|
||||||
|
|
||||||
|
def chooseAtkAction(self):
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def chooseDefAction(self):
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
class Skater(Player):
|
class Skater(Player):
|
||||||
"""A hockey player that is not a goalie."""
|
"""A hockey player that is not a goalie."""
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in a new issue