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
|