comparison gamelib/scenes/cryo.py @ 263:3b4a78422201

Shuffled a bunch of stuff into more appropriate places.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 27 Aug 2010 19:29:37 +0200
parents dfc89bc64fdb
children d4f08abc58fb
comparison
equal deleted inserted replaced
262:5f58da9eeb52 263:3b4a78422201
4 from albow.music import change_playlist, get_music, PlayList 4 from albow.music import change_playlist, get_music, PlayList
5 5
6 from gamelib import speech 6 from gamelib import speech
7 from gamelib.sound import get_sound 7 from gamelib.sound import get_sound
8 from gamelib.cursor import CursorSprite 8 from gamelib.cursor import CursorSprite
9 from gamelib.state import Scene, Item, CloneableItem, Thing, Result, \ 9 from gamelib.state import Scene, Item, CloneableItem, Thing, Result
10 InteractImage, InteractNoImage, InteractRectUnion, \
11 InteractAnimated
12 from gamelib.statehelpers import GenericDescThing
13 from gamelib.scenes.scene_widgets import Door
14 from gamelib.constants import DEBUG 10 from gamelib.constants import DEBUG
15 from gamelib.scenes.game_constants import PLAYER_ID 11 from gamelib.scenes.game_constants import PLAYER_ID
12 from gamelib.scenes.scene_widgets import (Door, InteractText, InteractNoImage,
13 InteractRectUnion, InteractImage,
14 InteractAnimated, GenericDescThing)
16 15
17 16
18 class Cryo(Scene): 17 class Cryo(Scene):
19 18
20 FOLDER = "cryo" 19 FOLDER = "cryo"