mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-09 12:26:29 +00:00
12 lines
305 B
Lua
12 lines
305 B
Lua
-- ctf_ranged/init.lua
|
|
|
|
local modpath = minetest.get_modpath("ctf_ranged")
|
|
|
|
ctf_ranged = {}
|
|
|
|
dofile(modpath.."/settings.lua")
|
|
dofile(modpath.."/wep_logic.lua")
|
|
dofile(modpath.."/wep_defns.lua")
|
|
dofile(modpath.."/wep_recipes.lua")
|
|
dofile(modpath.."/custom_controls.lua")
|
|
dofile(modpath.."/energy_gen.lua")
|