Minetest-WorldEditAdditions/worldeditadditions_core/core/entities/init.lua
2023-06-29 00:39:55 +01:00

15 lines
905 B
Lua

-- ███████ ███ ██ ████████ ██ ████████ ██ ███████ ███████
-- ██ ████ ██ ██ ██ ██ ██ ██ ██
-- █████ ██ ██ ██ ██ ██ ██ ██ █████ ███████
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
-- ███████ ██ ████ ██ ██ ██ ██ ███████ ███████
--- Entities and functions to manage them.
-- @namespace worldeditadditions_core.entities
local wea_c = worldeditadditions_core
return {
pos_marker = dofile(wea_c.modpath.."/core/entities/pos_marker.lua"),
pos_marker_wall = dofile(wea_c.modpath.."/core/entities/pos_marker_wall.lua")
}