comparison gamelib/scenes/map.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 3417cf0e8795
comparison
equal deleted inserted replaced
46:fb569d06e2cc 47:8f1fccb8cadf
1 """Neurally implanted schematic for moving around on the ship.
2
3 It is illegal for prisoners in transit to activate such an
4 implant. Failure to comply carries a minimum sentence of
5 six months.
6 """
7
8 from gamelib.state import Scene, Item, Thing
9
10
11 class Map(Scene):
12
13 FOLDER = "map"
14 BACKGROUND = None # TODO
15
16 INITIAL_DATA = {
17 'accessible': True,
18 }
19
20
21 SCENES = [Map]