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

"""Machine room where tools and machines are found."""

from gamelib.state import Scene, Item, Thing


class Machine(Scene):

    FOLDER = "machine"
    BACKGROUND = None # TODO

    INITIAL_DATA = {
        'accessible': True,
        }


SCENES = [Machine]