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

11
tools/shared/worlddefs.py Normal file
View File

@ -0,0 +1,11 @@
import os
CHUNK_WIDTH = 8
CHUNK_HEIGHT = 8
CHUNK_ENTITY_COUNT_MAX = 8
ENTITY_TYPE_MAP = {
"npc": "ENTITY_TYPE_NPC",
}
CHUNK_DATA_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'data', 'chunks'))