view gamelib/scenes/bridge.py @ 56:75bf3d3689e9

Refactor thing interactivity and add "fake" bridge scene.
author Jeremy Thurgood <firxen@gmail.com>
date Mon, 23 Aug 2010 13:39:12 +0200
parents 2e2f6ff54780
children 48d24a48d0ce
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

    # TODO: This is for testing.
    FOLDER = "cryo"
    BACKGROUND = "cryo_room.png"
    NAME = "bridge"

    INITIAL_DATA = {
        'accessible': False,
        }


SCENES = [Bridge]