Added "Track Control" gui.

This commit is contained in:
The Wobbler 2024-12-20 18:02:59 +01:00
commit b158a234fd
6 changed files with 91 additions and 0 deletions

10
wobuzz/gui.py Normal file
View file

@ -0,0 +1,10 @@
#!/usr/bin/python3
from ui.main_window import MainWindow
class GUI:
def __init__(self):
self.window = MainWindow()
self.window.show()