landsandboat/scripts/enum/terrain.lua
sruon 495ccff91c Enable ximesh files support
Co-Authored-By: InoUno <774909+InoUno@users.noreply.github.com>
Co-Authored-By: atom0s <atom0s@users.noreply.github.com>
Co-Authored-By: Mike Murphy <6765305+xenonsmurf@users.noreply.github.com>
2026-03-31 20:16:57 -06:00

21 lines
424 B
Lua

-----------------------------------
-- Terrain materials
-----------------------------------
xi = xi or {}
---@enum xi.terrain
xi.terrain =
{
OBJECT = 0,
PATH = 1,
GRASS = 2,
SAND = 3,
SNOW = 4,
STONE = 5,
METAL = 6,
WOOD = 7,
SHALLOW_WATER = 8,
DEEP_WATER = 9,
UNKNOWN = 10,
NONE = 255,
}