1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/bob74_ipl/dlc_security/billboards.lua
2025-06-07 08:51:21 +02:00

24 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
}