forked from Wobbl/Wobuzz
Got progress and track length indicators working.
This commit is contained in:
parent
24d589b172
commit
bd69ddbcde
4 changed files with 42 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue