comparison gamelib/scenes/bridge.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
comparison
equal deleted inserted replaced
46:fb569d06e2cc 47:8f1fccb8cadf
1 """Bridge where the final showdown with the AI occurs."""
2
3 from gamelib.state import Scene, Item, Thing
4
5
6 class Bridge(Scene):
7
8 FOLDER = "bridge"
9 BACKGROUND = None # TODO
10
11 INITIAL_DATA = {
12 'accessible': True,
13 }
14
15
16 SCENES = [Bridge]