Files
ND_Core/init.lua

14 lines
246 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
})
2025-04-16 22:34:51 -10:00
return NDCore