tubelib2/init.lua

15 lines
403 B
Lua
Raw Normal View History

2018-10-05 21:55:40 +02:00
tubelib2 = {}
-- Load support for I18n.
tubelib2.S = minetest.get_translator("tubelib2")
local MP = minetest.get_modpath("tubelib2")
dofile(MP .. "/internal2.lua")
dofile(MP .. "/internal1.lua")
dofile(MP .. "/tube_api.lua")
2019-02-09 11:04:42 +01:00
dofile(MP .. "/storage.lua")
2018-10-28 18:45:07 +01:00
-- Only for testing/demo purposes
if minetest.settings:get_bool("tubelib2_testingblocks_enabled") == true then
dofile(MP .. "/tube_test.lua")
end