This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
533 B
Lua
Raw Normal View History

2025-02-02 10:40:42 +01:00
exports('GetMpSecurityBillboardsObject', function()
return MpSecurityBillboards
end)
MpSecurityBillboards = {
Ipl = {
Interior = {
ipl = {
'sf_billboards',
}
},
Load = function()
EnableIpl(MpSecurityBillboards.Ipl.Interior.ipl, true)
end,
Remove = function()
EnableIpl(MpSecurityBillboards.Ipl.Interior.ipl, false)
end,
},
LoadDefault = function()
MpSecurityBillboards.Ipl.Load()
end
}