mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
refactor: remove modules system and fix indentation
Setting a "standard" module and resource structure is too limiting, so stick to import only.
This commit is contained in:
@@ -1,16 +1,14 @@
|
||||
local ServerCallbacks = {}
|
||||
|
||||
local ServerCallback = {
|
||||
Register = function(name, callback)
|
||||
name = ('__cb_%s:%s'):format(GetCurrentResourceName(), name)
|
||||
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
|
||||
RegisterServerEvent(name, function(...)
|
||||
local source = source
|
||||
callback(source, function(...)
|
||||
TriggerClientEvent(name, source, ...)
|
||||
end, ...)
|
||||
end)
|
||||
end
|
||||
}
|
||||
|
||||
return ServerCallback
|
||||
Reference in New Issue
Block a user