diff 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
line wrap: on
line diff
--- a/gamelib/scenes/cryo.py	Fri Aug 27 19:22:47 2010 +0200
+++ b/gamelib/scenes/cryo.py	Fri Aug 27 19:29:37 2010 +0200
@@ -6,13 +6,12 @@
 from gamelib import speech
 from gamelib.sound import get_sound
 from gamelib.cursor import CursorSprite
-from gamelib.state import Scene, Item, CloneableItem, Thing, Result, \
-                          InteractImage, InteractNoImage, InteractRectUnion, \
-                          InteractAnimated
-from gamelib.statehelpers import GenericDescThing
-from gamelib.scenes.scene_widgets import Door
+from gamelib.state import Scene, Item, CloneableItem, Thing, Result
 from gamelib.constants import DEBUG
 from gamelib.scenes.game_constants import PLAYER_ID
+from gamelib.scenes.scene_widgets import (Door, InteractText, InteractNoImage,
+                                          InteractRectUnion, InteractImage,
+                                          InteractAnimated, GenericDescThing)
 
 
 class Cryo(Scene):