mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
16 lines
424 B
Lua
16 lines
424 B
Lua
local ServerCallbacks = {}
|
|
|
|
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 |