Dusk progress
This commit is contained in:
10
tools/mapeditor/mapeditor.py
Executable file
10
tools/mapeditor/mapeditor.py
Executable 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
|
||||
|
Reference in New Issue
Block a user