diff gamelib/scenes/__init__.py @ 520:dfb6e57feebe

Move scene specifications into gamelib.scenes
author Neil Muller <neil@dip.sun.ac.za>
date Tue, 07 Sep 2010 18:25:29 +0200
parents 72b619d01f4d
children
line wrap: on
line diff
--- a/gamelib/scenes/__init__.py	Tue Sep 07 18:13:35 2010 +0200
+++ b/gamelib/scenes/__init__.py	Tue Sep 07 18:25:29 2010 +0200
@@ -1,1 +1,13 @@
 """Package for holding scenes."""
+
+SCENE_LIST = [
+        "cryo",
+        "bridge",
+        "mess",
+        "engine",
+        "machine",
+        "crew_quarters",
+        "map",
+        "manual",
+        ]
+INITIAL_SCENE = 'cryo'