gunslinger/init.lua
2018-11-20 14:00:33 +05:30

12 lines
323 B
Lua

local modpath = minetest.get_modpath("gunslinger") .. "/"
-- Import API
dofile(modpath .. "api.lua")
if not minetest.settings:get_bool("gunslinger.disable_builtin") then
dofile(modpath .. "assault_rifle.lua")
dofile(modpath .. "shotgun.lua")
dofile(modpath .. "sniper_rifle.lua")
dofile(modpath .. "handgun.lua")
end