2018-10-03 21:49:04 +02:00
|
|
|
--[[
|
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
=======================================================================
|
|
|
|
Tubelib Biogas Machines Mod
|
|
|
|
by Micu (c) 2018
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
Copyright (C) 2018 Michal Cieslakiewicz
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
License: LGPLv2.1+
|
|
|
|
Media: CC BY-SA
|
|
|
|
=======================================================================
|
|
|
|
|
|
|
|
]]--
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
biogasmachines = {}
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
-- helper functions
|
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/waterpipes.lua")
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
-- machines
|
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/freezer.lua")
|
2018-10-03 21:49:04 +02:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/gasifier.lua")
|
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/smelter.lua")
|