Crusader_Decomp/tools/render_crusader_map.py

14 lines
268 B
Python
Raw Permalink Normal View History

2026-03-26 23:12:38 +01:00
from __future__ import annotations
import sys
from pathlib import Path
if __package__ in (None, ""):
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
2026-03-26 23:12:38 +01:00
from tools.crusader_map.cli import main
2026-03-26 23:12:38 +01:00
if __name__ == "__main__":
raise SystemExit(main())