diff gamelib/scenes/cryo.py @ 28:0f25f7b9b37a

Add loading of initial state.
author Simon Cross <hodgestar+bzr@gmail.com>
date Sun, 22 Aug 2010 18:48:32 +0200
parents
children ebc76bc0c067
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gamelib/scenes/cryo.py	Sun Aug 22 18:48:32 2010 +0200
@@ -0,0 +1,12 @@
+from gamelib.state import Scene
+
+class Cryo(Scene):
+
+    FOLDER = "cryo"
+    BACKGROUND = "cryo_room.png"
+
+    def __init__(self, state):
+        super(Cryo, self).__init__(state)
+
+
+SCENES = [Cryo]