25 lines
541 B
Lua
25 lines
541 B
Lua
|
exports('GetMpSecurityMusicRoofTopObject', function()
|
||
|
return MpSecurityMusicRoofTop
|
||
|
end)
|
||
|
|
||
|
MpSecurityMusicRoofTop = {
|
||
|
Ipl = {
|
||
|
Interior = {
|
||
|
ipl = {
|
||
|
'sf_musicrooftop'
|
||
|
}
|
||
|
},
|
||
|
|
||
|
Load = function()
|
||
|
EnableIpl(MpSecurityMusicRoofTop.Ipl.Interior.ipl, true)
|
||
|
end,
|
||
|
Remove = function()
|
||
|
EnableIpl(MpSecurityMusicRoofTop.Ipl.Interior.ipl, false)
|
||
|
end
|
||
|
},
|
||
|
|
||
|
LoadDefault = function()
|
||
|
MpSecurityMusicRoofTop.Ipl.Load()
|
||
|
end
|
||
|
}
|