mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-28 17:01:16 +00:00
9a7398a2e1
avoid creating multiply unused exports per scripts.
10 lines
208 B
Lua
10 lines
208 B
Lua
if GetCurrentResourceName() == 'qb-core' then
|
|
function GetSharedObject()
|
|
return QBCore
|
|
end
|
|
|
|
exports('GetSharedObject', GetSharedObject)
|
|
end
|
|
|
|
QBCore = exports['qb-core']:GetSharedObject()
|