This commit is contained in:
revernomad17
2026-04-08 13:36:49 +07:00
parent 595544e94f
commit 5b497cf414
18 changed files with 2121 additions and 6 deletions

9
gui.py Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
"""
gui.py — Arma Mod Manager launcher.
The implementation lives in the gui/ package.
"""
from gui import run_app
if __name__ == "__main__":
run_app()