forked from Wobbl/Wobuzz
Added opening of files via command line and added simple controls.
This commit is contained in:
parent
d089a57151
commit
ce254c8b54
6 changed files with 135 additions and 4 deletions
|
@ -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__":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue