Dusk progress

This commit is contained in:
2025-06-13 19:53:55 -05:00
parent 8289cac039
commit f6f6194b4d
10 changed files with 43 additions and 130 deletions

10
tools/mapeditor/mapeditor.py Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/python3
import sys, os
# Dynamically add ../shared to sys.path
shared_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'shared'))
sys.path.append(shared_path)
# Import shared modules
from worlddefs import CHUNK_WIDTH, CHUNK_HEIGHT, ENTITY_TYPE_MAP, CHUNK_DATA_DIR