Got shitty basic features working.

This commit is contained in:
The Wobbler 2024-12-21 19:00:06 +01:00
parent ce254c8b54
commit 45d97f5aeb
6 changed files with 97 additions and 29 deletions

View file

@ -2,17 +2,18 @@
import sys
from PyQt6.QtWidgets import QApplication
from gui import GUI
from wobuzz.player.player import Player
from gui import GUI
from gui_communication import GUICommunication
class Wobuzz:
def __init__(self):
self.qt_app = QApplication([])
self.player = Player(sys.argv[1:])
self.player = Player(self, sys.argv[1:])
self.gui = GUI(self)
self.gui_communication = GUICommunication(self)
if __name__ == "__main__":