aboutsummaryrefslogtreecommitdiffstats
path: root/python/GameState.py
diff options
context:
space:
mode:
authorJack Vehmeier <vehme003@umn.edu>2021-04-27 13:37:43 -0500
committerJack Vehmeier <vehme003@umn.edu>2021-04-27 13:37:43 -0500
commitdea5598b51831b89f3f11e84db7d8a6418417590 (patch)
tree5cd2d369dd4ec853ed636e4ec95cde341785f4a6 /python/GameState.py
parentchanged the get move to minimax (diff)
downloadcsci4511w-dea5598b51831b89f3f11e84db7d8a6418417590.tar
csci4511w-dea5598b51831b89f3f11e84db7d8a6418417590.tar.gz
csci4511w-dea5598b51831b89f3f11e84db7d8a6418417590.tar.bz2
csci4511w-dea5598b51831b89f3f11e84db7d8a6418417590.tar.lz
csci4511w-dea5598b51831b89f3f11e84db7d8a6418417590.tar.xz
csci4511w-dea5598b51831b89f3f11e84db7d8a6418417590.tar.zst
csci4511w-dea5598b51831b89f3f11e84db7d8a6418417590.zip
vehme003
Diffstat (limited to 'python/GameState.py')
-rw-r--r--python/GameState.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/python/GameState.py b/python/GameState.py
index eed8f36..8957f7c 100644
--- a/python/GameState.py
+++ b/python/GameState.py
@@ -36,7 +36,6 @@ class DotsAndBoxesState(GameState):
columns.append({"v": 0, "h": 0})
rows.append(columns)
self.board = rows
-
self.score = {1: 0, 2: 0}
self.player = player
print("Player: ", player)