diff gamelib/scenes/machine.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/machine.py	Mon Aug 23 11:47:03 2010 +0200
@@ -0,0 +1,16 @@
+"""Machine room where tools and machines are found."""
+
+from gamelib.state import Scene, Item, Thing
+
+
+class Machine(Scene):
+
+    FOLDER = "machine"
+    BACKGROUND = None # TODO
+
+    INITIAL_DATA = {
+        'accessible': True,
+        }
+
+
+SCENES = [Machine]