a3292f0daeaee1ca4cb91356b03886605ba6e3b9
[minwii.git] / src / app / minwii.py
1 # -*- coding: utf-8 -*-
2 """
3 l'application winwii
4
5 $Id$
6 $URL$
7 """
8
9 from pgu.gui import Desktop
10 from pgu.gui import QUIT
11 from widgets.home import Home
12 from widgets.playingscreen import _PlayingScreenBase, SongPlayingScreenTest
13
14 class MinWii(Desktop):
15
16 def __init__(self) :
17 Desktop.__init__(self)
18 import pygame
19 playingScreen = SongPlayingScreenTest()
20 playingScreen.run()