mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-04-21 18:20:18 +00:00
10 lines
249 B
Python
10 lines
249 B
Python
from PySide6.QtWidgets import QWidget
|
|
|
|
from ui.designer.tabs.tabToolsEntry_ui import Ui_TabToolsEntry
|
|
|
|
|
|
class TabToolsEntry(Ui_TabToolsEntry, QWidget):
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self.setupUi(self)
|