mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
9 lines
207 B
Python
9 lines
207 B
Python
from PySide2.QtWidgets import QWidget, QGraphicsScene
|
|
|
|
|
|
class QLiberationScene(QGraphicsScene):
|
|
|
|
def __init__(self, parent):
|
|
super().__init__(parent)
|
|
self.addText("Hello Liberation Map")
|