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

"""Mess where crew eat. Fun stuff."""

from gamelib.state import Scene, Item, Thing


class Mess(Scene):

    FOLDER = "mess"
    BACKGROUND = None # TODO

    INITIAL_DATA = {
        'accessible': True,
        }


SCENES = [Mess]