création d'un dispatcher d'événement central.
[minwii.git] / src / app / minwii.py
index f0c69b8..a3292f0 100755 (executable)
@@ -9,12 +9,12 @@ $URL$
 from pgu.gui import Desktop
 from pgu.gui import QUIT
 from widgets.home import Home
+from widgets.playingscreen import _PlayingScreenBase, SongPlayingScreenTest
 
 class MinWii(Desktop):
     
     def __init__(self) :
         Desktop.__init__(self)
-        
-        home = Home()
-        home.connect(QUIT, self.quit)
-        self.run(home)
+        import pygame
+        playingScreen = SongPlayingScreenTest()
+        playingScreen.run()