comparison gamelib/gamescreen.py @ 358:760f6a318d2e

Moved some widgets around.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 28 Aug 2010 16:50:37 +0200
parents 6a7562727964
children 56a05ae56574
comparison
equal deleted inserted replaced
357:e5f28bd6d4ce 358:760f6a318d2e
10 from pygame.color import Color 10 from pygame.color import Color
11 from pygame.locals import BLEND_ADD 11 from pygame.locals import BLEND_ADD
12 12
13 from constants import SCREEN, BUTTON_SIZE, SCENE_SIZE 13 from constants import SCREEN, BUTTON_SIZE, SCENE_SIZE
14 from cursor import CursorWidget 14 from cursor import CursorWidget
15 from hand import HandButton
16 from popupmenu import PopupMenu, PopupMenuButton
17 from state import initial_state, handle_result 15 from state import initial_state, handle_result
18 from widgets import MessageDialog, BoomButton 16 from widgets import (MessageDialog, BoomButton, HandButton, PopupMenu,
17 PopupMenuButton)
19 18
20 19
21 class InventoryView(PaletteView): 20 class InventoryView(PaletteView):
22 21
23 sel_color = Color("yellow") 22 sel_color = Color("yellow")