예제 #1
0
'''
BLACK-AND-WHITE
WinterSalmon
Main
'''

from gui.gui import Gui
from cli.cli import Cli

if __name__ == "__main__":
    # if pygame is not installed run game in commandline mode
    try:
        UI = Gui()
    except ImportError:
        UI = Cli()
    UI.init_screen()
    UI.game_screen()
    UI.credit_screen()
예제 #2
0
'''
BLACK-AND-WHITE
WinterSalmon
Main Gui
'''

from gui.gui import Gui

if __name__ == "__main__":
    GUI = Gui()
    GUI.init_screen()
    GUI.game_screen()
    GUI.credit_screen()