view gamelib/scenes/bridge.py @ 51:3417cf0e8795

Place for artist credits.
author Simon Cross <simon@simonx>
date Mon, 23 Aug 2010 12:18:03 +0200
parents 8f1fccb8cadf
children 2e2f6ff54780
line wrap: on
line source

"""Bridge where the final showdown with the AI occurs."""

from gamelib.state import Scene, Item, Thing


class Bridge(Scene):

    FOLDER = "bridge"
    BACKGROUND = None # TODO

    INITIAL_DATA = {
        'accessible': True,
        }


SCENES = [Bridge]