forked from Simnation/Main
13 lines
No EOL
360 B
Lua
13 lines
No EOL
360 B
Lua
---@diagnostic disable: duplicate-set-field
|
|
if GetResourceState('qb-management') ~= 'started' then return end
|
|
if GetResourceState('qbx_management') == 'started' then return end
|
|
|
|
BossMenu = BossMenu or {}
|
|
|
|
---This will get the name of the module being used.
|
|
---@return string
|
|
BossMenu.GetResourceName = function()
|
|
return "qb-management"
|
|
end
|
|
|
|
return BossMenu |