comparison gamelib/scenes/machine.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 5f58da9eeb52
children eb3cfcaff469
comparison
equal deleted inserted replaced
262:5f58da9eeb52 263:3b4a78422201
1 """Machine room where tools and machines are found.""" 1 """Machine room where tools and machines are found."""
2 2
3 from gamelib.state import Scene, Item, Thing, InteractNoImage, InteractText, Result 3 from gamelib.state import Scene, Item, Thing, Result
4 from gamelib.cursor import CursorSprite 4 from gamelib.cursor import CursorSprite
5 from gamelib.scenes.scene_widgets import Door 5 from gamelib.scenes.scene_widgets import (Door, InteractText, InteractNoImage,
6 InteractRectUnion, InteractImage,
7 InteractAnimated, GenericDescThing)
6 8
7 9
8 class Machine(Scene): 10 class Machine(Scene):
9 11
10 FOLDER = "machine" 12 FOLDER = "machine"