Seperating mapcompile into files.
This commit is contained in:
11
tools/mapcompile/constants.py
Normal file
11
tools/mapcompile/constants.py
Normal file
@ -0,0 +1,11 @@
|
||||
# Values defined within C
|
||||
CHUNK_WIDTH = 8
|
||||
CHUNK_HEIGHT = 8
|
||||
CHUNK_TILE_COUNT = CHUNK_WIDTH * CHUNK_HEIGHT
|
||||
CHUNK_ENTITY_COUNT_MAX = 8
|
||||
TILE_WIDTH_HEIGHT = 16
|
||||
TILE_WIDTH_HEIGHT = 16
|
||||
|
||||
ENTITY_TYPE_MAP = {
|
||||
"npc": "ENTITY_TYPE_NPC",
|
||||
}
|
Reference in New Issue
Block a user