Added opening of files via command line and added simple controls.

This commit is contained in:
The Wobbler 2024-12-21 16:07:27 +01:00
parent d089a57151
commit ce254c8b54
6 changed files with 135 additions and 4 deletions

View file

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