diff gamelib/scenes/engine.py @ 47:8f1fccb8cadf

Skeletons for scenes in plot outline.
author Simon Cross <simon@simonx>
date Mon, 23 Aug 2010 11:47:03 +0200
parents
children 2e2f6ff54780
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gamelib/scenes/engine.py	Mon Aug 23 11:47:03 2010 +0200
@@ -0,0 +1,16 @@
+"""Engine room where things need to be repaired."""
+
+from gamelib.state import Scene, Item, Thing
+
+
+class Engine(Scene):
+
+    FOLDER = "engine"
+    BACKGROUND = None # TODO
+
+    INITIAL_DATA = {
+        'accessible': True,
+        }
+
+
+SCENES = [Engine]