Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/states/CGameState.py
blob: c40af7ec69b8ef9c94fa784bba089006df19d953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CGameState(object):
    def init(self):
        print "CGameState init"
        
    def update(self):
        pass
        #print "CGameState update"
        
    #def render(self):
    #    print "CGameState render"
        
    def destroy(self):
        print "CGameState destroy"