Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api/GameState.py
diff options
context:
space:
mode:
authorFernando Sansberro <sansberro@batovi.com>2012-04-21 12:19:39 (GMT)
committer Fernando Sansberro <sansberro@batovi.com>2012-04-21 12:19:39 (GMT)
commit0eb075f87d98e8588fa2d8b8bc5f1513d377d8ba (patch)
treef4712b0a49968fdb950ec1343045ff0715bef6bf /src/api/GameState.py
parent4a59a2320d9b65a997c34c707631fbf5d206a7fa (diff)
Renamed states folder to game. Some improvements in codebase.
Diffstat (limited to 'src/api/GameState.py')
-rw-r--r--src/api/GameState.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/api/GameState.py b/src/api/GameState.py
new file mode 100644
index 0000000..42c09c7
--- /dev/null
+++ b/src/api/GameState.py
@@ -0,0 +1,16 @@
+# -*- coding: utf-8 -*-
+
+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"