view gamelib/scenes/mess.py @ 109:66898d810247

Add hackish speech support (run regen-speech.py to generate files -- needs espeak and oggenc).
author Simon Cross <simon@simonx>
date Tue, 24 Aug 2010 14:32:52 +0200
parents 2e2f6ff54780
children 95d882eeba12
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': False,
        }


SCENES = [Mess]