mirror of
https://github.com/ND-Framework/ND_Core.git
synced 2026-08-17 22:06:02 +01:00
12 lines
231 B
Lua
12 lines
231 B
Lua
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
|
|
})
|