Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api/GameState.py
blob: d4258203c0b4cd702f6f4042ef64f4d45b84831a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- coding: utf-8 -*-

class CGameState(object):
    
    def init(self):
        pass
        #print "CGameState init"
        
    def update(self):
        pass
        #print "CGameState update"
      
    def destroy(self):
        pass
        #print "CGameState destroy"