techage_modpack/ta4_addons/init.lua

34 lines
815 B
Lua
Raw Permalink Normal View History

2021-08-01 12:00:22 +03:00
--[[
TA4 Addons
==========
2022-01-03 14:04:16 +03:00
Copyright (C) 2020-2021 Joachim Stolberg
Copyright (C) 2020-2021 Thomas S.
2021-08-01 12:00:22 +03:00
GPL v3
See LICENSE.txt for more information
]]--
ta4_addons = {}
-- Version for compatibility checks
ta4_addons.version = 0.1
-- Load support for I18n.
ta4_addons.S = minetest.get_translator("ta4_addons")
local MP = minetest.get_modpath("ta4_addons")
dofile(MP.."/touchscreen/main.lua") -- Touchscreen
2022-01-03 14:04:16 +03:00
dofile(MP.."/matrix_screen/main.lua") -- Matrix Screen
2021-08-01 12:00:22 +03:00
dofile(MP.."/manual_DE.lua") -- Techage Manual DE
dofile(MP.."/manual_EN.lua") -- Techage Manual EN
2024-10-24 17:00:53 +03:00
dofile(MP.."/manual_RU.lua") -- Techage Manual RU
2021-08-01 12:00:22 +03:00
techage.add_manual_items({ta4_addons_touchscreen = "ta4_addons_touchscreen_inventory.png"})
2022-01-03 14:04:16 +03:00
techage.add_manual_items({ta4_addons_matrix_screen = "ta4_addons_matrix_screen_inventory.png"})