Files
arma-modlist-tools/gui/__init__.py
revernomad17 5b497cf414 Add GUI
2026-04-08 13:36:49 +07:00

25 lines
461 B
Python

"""
gui — Arma Mod Manager UI package.
Entry point:
from gui import run_app
run_app()
"""
from __future__ import annotations
import customtkinter as ctk
# Apply theme before any widget is created
ctk.set_appearance_mode("dark")
ctk.set_default_color_theme("blue")
def run_app() -> None:
"""Create and start the main window."""
from gui.app import ArmaModManagerApp
app = ArmaModManagerApp()
app.mainloop()
__all__ = ["run_app"]