From fd7bc8fcb8f88b07063e8f6d134dec5587bdf070 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Tue, 11 Jan 2022 15:25:45 -0500 Subject: [PATCH] added the base AI function names (did not write anything yet) --- player.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/player.py b/player.py index 6bdf065..af2c3e7 100644 --- a/player.py +++ b/player.py @@ -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