Files
ND_Core/init.lua

12 lines
231 B
Lua
Raw Permalink Normal View History

2023-07-09 21:19:35 +02:00
local nd_core = exports["ND_Core"]
NDCore = setmetatable({}, {
__index = function(self, index)
self[index] = function(...)
return nd_core[index](nil, ...)
end
return self[index]
end
})