mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
17 lines
492 B
Python
17 lines
492 B
Python
from PySide2.QtGui import QWindow
|
|
from PySide2.QtWidgets import QHBoxLayout, QLabel, QWidget
|
|
|
|
|
|
class QDebriefingWindow(QWindow):
|
|
|
|
def __init__(self, parent):
|
|
super(QDebriefingWindow, self).__init__(parent)
|
|
self.initUi()
|
|
|
|
def initUi(self):
|
|
layout = QHBoxLayout()
|
|
layout.addWidget(QLabel("TODO : This will be the debriefing menu"))
|
|
|
|
central_widget = QWidget()
|
|
central_widget.setLayout(layout)
|
|
self.setCentralWidget(central_widget) |