view gamelib/scenes/map.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 3417cf0e8795
line wrap: on
line source

"""Neurally implanted schematic for moving around on the ship.

   It is illegal for prisoners in transit to activate such an
   implant. Failure to comply carries a minimum sentence of
   six months.
   """

from gamelib.state import Scene, Item, Thing


class Map(Scene):

    FOLDER = "map"
    BACKGROUND = None # TODO

    INITIAL_DATA = {
        'accessible': True,
        }


SCENES = [Map]