Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gamestate.py
diff options
context:
space:
mode:
Diffstat (limited to 'gamestate.py')
-rw-r--r--gamestate.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/gamestate.py b/gamestate.py
new file mode 100644
index 0000000..a3e40c9
--- /dev/null
+++ b/gamestate.py
@@ -0,0 +1,13 @@
+
+
+class GameState(object):
+ ''' Used by the leader of the game to keep track of the game state
+ '''
+
+ def __init__(self):
+ self.player_active = 0
+ self.points = {}
+ self.turn = 0
+ self.selected = 0
+
+