mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 04:01:24 +00:00
14 lines
275 B
Lua
14 lines
275 B
Lua
QBCore = {}
|
|
QBCore.Config = QBConfig
|
|
QBCore.Shared = QBShared
|
|
QBCore.ServerCallbacks = {}
|
|
QBCore.UseableItems = {}
|
|
|
|
function GetCoreObject()
|
|
return QBCore
|
|
end
|
|
|
|
RegisterServerEvent('QBCore:GetObject')
|
|
AddEventHandler('QBCore:GetObject', function(cb)
|
|
cb(GetCoreObject())
|
|
end) |