view gamelib/scenes/engine.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 source

"""Engine room where things need to be repaired."""

from gamelib.state import Scene, Item, Thing


class Engine(Scene):

    FOLDER = "engine"
    BACKGROUND = None # TODO

    INITIAL_DATA = {
        'accessible': True,
        }


SCENES = [Engine]