blob: f04f3765f32bb62197a2a1506bedafeecc7996a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import re, sys, traceback
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import ui, phys, file
system = phys.System()
app = QApplication(sys.argv)
win = ui.MainWindow(system)
win.show()
sys.exit(app.exec_())
|