Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
15
mods/futil/minetest/registration.lua
Normal file
15
mods/futil/minetest/registration.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
function futil.make_registration()
|
||||
local t = {}
|
||||
local registerfunc = function(func)
|
||||
t[#t + 1] = func
|
||||
end
|
||||
return t, registerfunc
|
||||
end
|
||||
|
||||
function futil.make_registration_reverse()
|
||||
local t = {}
|
||||
local registerfunc = function(func)
|
||||
table.insert(t, 1, func)
|
||||
end
|
||||
return t, registerfunc
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue