mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
Setting a "standard" module and resource structure is too limiting, so stick to import only.
14 lines
331 B
Lua
14 lines
331 B
Lua
local ServerCallback = {
|
|
Register = function(name, callback)
|
|
name = ('__cb_%s:%s'):format(GetCurrentResourceName(), name)
|
|
|
|
RegisterServerEvent(name, function(...)
|
|
local source = source
|
|
callback(source, function(...)
|
|
TriggerClientEvent(name, source, ...)
|
|
end, ...)
|
|
end)
|
|
end
|
|
}
|
|
|
|
return ServerCallback |