Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gamestate.py
blob: a3e40c9bff12e83bb1404c8a87a4ce8b4e5ad118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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