view gamelib/scenes/machine.py @ 49:8771d545a493

Remove debugging print
author Neil Muller <neil@dip.sun.ac.za>
date Mon, 23 Aug 2010 11:59:41 +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]