Got progress and track length indicators working.

This commit is contained in:
The Wobbler 2024-12-21 20:50:09 +01:00
parent 24d589b172
commit bd69ddbcde
4 changed files with 42 additions and 3 deletions

View file

@ -2,6 +2,7 @@
import sys
from PyQt6.QtWidgets import QApplication
from utils import Utils
from wobuzz.player.player import Player
from gui import GUI
from gui_communication import GUICommunication
@ -11,6 +12,8 @@ class Wobuzz:
def __init__(self):
self.qt_app = QApplication([])
self.utils = Utils(self)
self.player = Player(self, sys.argv[1:])
self.gui = GUI(self)
self.gui_communication = GUICommunication(self)