$URL$
"""
-from pgu import gui as pguGui
+#from pgu.gui import Desktop
+#from pgu.gui import QUIT
from widgets.home import Home
+from widgets.playingscreen import PlayingScreen
-class MinWii(pguGui.Desktop):
+class MinWii(object):
def __init__(self) :
- pguGui.Desktop.__init__(self)
-
- home = Home()
- self.run(home)
\ No newline at end of file
+ playingScreen = PlayingScreen()
+ playingScreen.run()