Dusk progress
This commit is contained in:
11
tools/shared/worlddefs.py
Normal file
11
tools/shared/worlddefs.py
Normal 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'))
|
Reference in New Issue
Block a user