X-Git-Url: https://scm.cri.minesparis.psl.eu/git/minwii.git/blobdiff_plain/21025650d4d91bd0e1848bf1a78208301180e604..46f3ffd7fdde386f41020171b5733e55a8e64a85:/src/app/minwii.py diff --git a/src/app/minwii.py b/src/app/minwii.py deleted file mode 100755 index 26e2a5e..0000000 --- a/src/app/minwii.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -""" -l'application winwii - -$Id$ -$URL$ -""" - -from pgu.gui import Desktop -from pgu.gui import QUIT -from widgets.home import Home -from widgets.playingscreen import PlayingScreen - -class MinWii(object): - - def __init__(self) : - app = Desktop() - - while True : - home = Home() - home.connect(QUIT, app.quit) - app.run(home) - app.close(home) - - playingScreen = PlayingScreen() - playingScreen.run()