création d'un dispatcher d'événement central.
[minwii.git] / src / app / minwii.py
index 15e24dc..a3292f0 100755 (executable)
@@ -5,3 +5,16 @@ l'application winwii
 $Id$
 $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)
+        import pygame
+        playingScreen = SongPlayingScreenTest()
+        playingScreen.run()