12 lines
396 B
Python
12 lines
396 B
Python
#!/usr/bin/env python3
|
|
"""Redirect: actual script lives in N01 project module.
|
|
|
|
Usage unchanged:
|
|
python generate_map.py --seed 123 --density dense --coastline rugged
|
|
"""
|
|
import subprocess, sys
|
|
from pathlib import Path
|
|
|
|
script = Path(__file__).parent / '01_Active_Projects' / 'N01_植物帝国企划' / 'generate_map.py'
|
|
sys.exit(subprocess.call([sys.executable, str(script)] + sys.argv[1:]))
|