-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
34 lines (22 loc) · 794 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import settings
from wakutils import setupJson
import sys
from PySide6.QtQml import QQmlApplicationEngine
from PySide6.QtGui import QGuiApplication
from wakfuitemlist import WakfuItemList
from wakfuItemDetail import WakfuItemDetail
from wakfuConstraintSelector import WakfuConstraintSelector
from wakfuItemStatSum import WakfuItemStatSum
from wakfuConstraintSelectorTemplate import WakfuConstraintSelectorTemplate
from constraint import Constraint
from PySide6.QtQml import QmlElement
from PySide6.QtCore import Slot,QObject
if __name__ == "__main__":
#Set up the application window
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
settings.initGlobal()
setupJson()
# solve()
engine.load("views/mainPage.qml")
sys.exit(app.exec())