Refactor asset paths for settings icons in the GUI and reorganize main.py structure

This commit is contained in:
Vxrtrauter
2025-09-03 21:42:34 +02:00
parent 5bfa06239a
commit 391e4c372b
2 changed files with 20 additions and 4 deletions
+18 -2
View File
@@ -1,3 +1,19 @@
from core.gui import run_gui
from core.gui import run_gui as gui
from core.gui import MainWindow
from PySide6 import QtWidgets
import sys
run_gui()
def run_gui():
app = QtWidgets.QApplication([])
widget = MainWindow()
widget.show()
sys.exit(app.exec())
if __name__ == "__main__":
run_gui()