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

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