diff pyntnclick/gamescreen.py @ 551:38fb04728ac5 pyntnclick

Rearrange import.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 11 Feb 2012 13:24:00 +0200
parents ded4324b236e
children ebb2efcb4ea7
line wrap: on
line diff
--- a/pyntnclick/gamescreen.py	Sat Feb 11 13:22:21 2012 +0200
+++ b/pyntnclick/gamescreen.py	Sat Feb 11 13:24:00 2012 +0200
@@ -9,11 +9,11 @@
 from pygame import Rect, mouse
 from pygame.color import Color
 
-from constants import SCREEN, BUTTON_SIZE, SCENE_SIZE, LEAVE
-from cursor import CursorWidget
-from state import initial_state, handle_result
-from widgets import (MessageDialog, BoomButton, HandButton, PopupMenu,
-                     PopupMenuButton)
+from pyntnclick.constants import SCREEN, BUTTON_SIZE, SCENE_SIZE, LEAVE
+from pyntnclick.cursor import CursorWidget
+from pyntnclick.state import initial_state, handle_result
+from pyntnclick.widgets import (
+    MessageDialog, BoomButton, HandButton, PopupMenu, PopupMenuButton)
 
 
 class InventoryView(PaletteView):