mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +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")
|