Scripts/resources/[standalone]/bob74_ipl/dlc_security/billboards.lua
2024-12-29 21:02:20 +01:00

25 lines
533 B
Lua

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
}