view gamelib/scenes/mess.py @ 141:4f18e68fd0dc

Add a few sounds to the cryo room
author Neil Muller <neil@dip.sun.ac.za>
date Tue, 24 Aug 2010 22:29:23 +0200
parents 95d882eeba12
children d15270c2898c
line wrap: on
line source

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

from gamelib.state import Scene, Item, Thing


class Mess(Scene):

    FOLDER = "mess"
    BACKGROUND = "mess_hall.png"

    INITIAL_DATA = {
        'accessible': False,
        }


SCENES = [Mess]