comparison gamelib/scenes/map.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 b1451b0b906f
children b3bc101171ea
comparison
equal deleted inserted replaced
262:5f58da9eeb52 263:3b4a78422201
5 six months. 5 six months.
6 6
7 Many parts of the ship are derelict and inaccessible. 7 Many parts of the ship are derelict and inaccessible.
8 """ 8 """
9 9
10 from gamelib.state import Scene, Item, Thing, InteractText, Result 10 from gamelib.state import Scene, Item, Thing, Result
11 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)
12 15
13 16
14 class Map(Scene): 17 class Map(Scene):
15 18
16 FOLDER = "map" 19 FOLDER = "map"