added the base AI function names (did not write anything yet)

This commit is contained in:
Sakimori 2022-01-11 15:25:45 -05:00
parent a118fcc3d6
commit fd7bc8fcb8

View file

@ -66,6 +66,12 @@ class Player(object):
outString += f"{name[0]}."
return outString
def chooseAtkAction(self):
raise NotImplementedError()
def chooseDefAction(self):
raise NotImplementedError()
class Skater(Player):
"""A hockey player that is not a goalie."""
pass