forked from Simnation/Main
14 lines
No EOL
411 B
Lua
14 lines
No EOL
411 B
Lua
---@diagnostic disable: duplicate-set-field
|
|
BossMenu = BossMenu or {}
|
|
|
|
---This will get the name of the module being used.
|
|
---@return string
|
|
BossMenu.GetResourceName = function()
|
|
return "default"
|
|
end
|
|
|
|
BossMenu.OpenBossMenu = function(src, jobName, jobType)
|
|
print("You are using the community_bridge module for boss menus. Please ensure you have the correct dependencies installed.")
|
|
end
|
|
|
|
return BossMenu |