mirror of
https://github.com/seuyh/stellaris-dlc-unlocker.git
synced 2026-07-28 14:47:05 -07:00
10 lines
228 B
Python
10 lines
228 B
Python
from PyQt5.QtWidgets import QApplication
|
|
from gui.main_window import MainWindow
|
|
from sys import argv
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication(argv)
|
|
main_window = MainWindow()
|
|
main_window.show()
|
|
app.exec_()
|