10 lines
346 B
Lua
10 lines
346 B
Lua
facade = {}
|
|
|
|
-- Define the shapes and registration functions
|
|
dofile (minetest.get_modpath("facade") .. "/shapes.lua")
|
|
|
|
-- Register the nodes made from compatible materials
|
|
dofile (minetest.get_modpath("facade") .. "/materials.lua")
|
|
|
|
-- Add a dedicated machine to produce the facade shapes
|
|
dofile (minetest.get_modpath("facade") .. "/shaper.lua")
|