12 lines
276 B
Python
12 lines
276 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility wrapper: run heightmap export via geodata_to_unity."""
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
from geodata_to_unity import main as geodata_main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(geodata_main(["--export", "heightmap"]))
|