prepare gui env
This commit is contained in:
parent
02e7221149
commit
d2bcf3bdd8
25 changed files with 291 additions and 198 deletions
9
src/wargame_campaign/view/view.py
Normal file
9
src/wargame_campaign/view/view.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from PyQt6 import uic, QtWidgets
|
||||
from wargame_campaign.view.ui.ui_main_window import Ui_MainWindow
|
||||
|
||||
class View(QtWidgets.QMainWindow, Ui_MainWindow):
|
||||
def __init__(self, parent=None):
|
||||
super(View, self).__init__(parent)
|
||||
self.setupUi(self)
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue