view gamelib/scenes/machine.py @ 52:7a977f8f433a

Better looking menu button
author Neil Muller <neil@dip.sun.ac.za>
date Mon, 23 Aug 2010 12:46:51 +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]