mirror of
https://github.com/etienerodri/PRSA---Rom-Manager-.git
synced 2026-05-06 21:16:22 -05:00
12 lines
247 B
Python
12 lines
247 B
Python
import sys
|
|
from PyQt6.QtWidgets import QApplication
|
|
from gui.gui import RomToolGUI
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
window = RomToolGUI()
|
|
window.show()
|
|
sys.exit(app.exec())
|
|
if __name__ == '__main__':
|
|
main()
|