view gamelib/scenes/won.py @ 434:9bcb6148fc6b

Remove won screen wall of text
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 28 Aug 2010 23:48:21 +0200
parents 860cb6144fd4
children
line wrap: on
line source

"""You WON screen"""

from gamelib.state import Scene, Item, Thing, Result
from gamelib.scenes.game_constants import PLAYER_ID
from gamelib.scenes.scene_widgets import (Door, InteractText, InteractNoImage,
                                          InteractRectUnion, InteractImage,
                                          InteractAnimated, GenericDescThing,
                                          make_jim_dialog)


class Won(Scene):

    FOLDER = "won"
    BACKGROUND = "won.png"

    INITIAL_DATA = {
        'accessible': False,
        }

    def __init__(self, state):
        super(Won, self).__init__(state)


SCENES = [Won]