9 lines
333 B
Python
9 lines
333 B
Python
'''--------------------------------------------------------------------------------------------------
|
|
In dem File wird eine Instany des Controllers erstellt. Der Controller ist die Schnittstelle
|
|
zwischen GUI und Modell und koordiniert den Ablauf und die Erstellung der GUI
|
|
'''
|
|
|
|
from UIController import *
|
|
|
|
controller = Controller()
|