mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-06 07:43:50 +01:00
14 lines
251 B
Lua
14 lines
251 B
Lua
|
|
local path = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
-- Mob API
|
|
dofile(path .. "/api.lua")
|
|
|
|
-- Spawning Algorithm
|
|
dofile(path .. "/spawning.lua")
|
|
|
|
-- Rideable Mobs
|
|
dofile(path .. "/mount.lua")
|
|
|
|
-- Mob Items
|
|
dofile(path .. "/crafts.lua") |