forked from Wobbl/Wobuzz
Got shitty basic features working.
This commit is contained in:
parent
ce254c8b54
commit
45d97f5aeb
6 changed files with 97 additions and 29 deletions
|
@ -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__":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue