view gamelib/scenes/cryo.py @ 32:18cb1af411ef

Add helper for adding items. Give items names. Make things take a rectangle.
author Simon Cross <hodgestar+bzr@gmail.com>
date Sun, 22 Aug 2010 19:38:32 +0200
parents 0f25f7b9b37a
children ebc76bc0c067
line wrap: on
line source

from gamelib.state import Scene

class Cryo(Scene):

    FOLDER = "cryo"
    BACKGROUND = "cryo_room.png"

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


SCENES = [Cryo]