12 lines
185 B
Lua
12 lines
185 B
Lua
|
exports('GetRedCarpetObject', function()
|
||
|
return RedCarpet
|
||
|
end)
|
||
|
|
||
|
RedCarpet = {
|
||
|
ipl = "redCarpet",
|
||
|
|
||
|
Enable = function(state)
|
||
|
EnableIpl(RedCarpet.ipl, state)
|
||
|
end
|
||
|
}
|