mirror of
https://github.com/etienerodri/PRSA-Player-Palette-Editor.git
synced 2026-05-21 06:26:50 -05:00
12 lines
263 B
Python
12 lines
263 B
Python
import sys
|
|
from PyQt6.QtWidgets import QApplication
|
|
from gui.gui import PlayerSpriteEditor
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
window = PlayerSpriteEditor()
|
|
window.show()
|
|
sys.exit(app.exec())
|
|
if __name__ == '__main__':
|
|
main()
|