11 lines
269 B
Lua
11 lines
269 B
Lua
--TODO: sounds
|
|
local modname = minetest.get_current_modname()
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
dofile(modpath.."/bullet.lua")
|
|
dofile(modpath.."/api.lua")
|
|
|
|
if minetest.get_modpath("tt") and minetest.global_exists("tt") then
|
|
dofile(modpath.."/tt.lua")
|
|
end
|