forked from Simnation/Main
8 lines
182 B
Lua
8 lines
182 B
Lua
![]() |
local bl_bridge = exports.bl_bridge
|
||
|
|
||
|
Framework = setmetatable({}, {
|
||
|
__index = function(self, index)
|
||
|
self[index] = bl_bridge[index]()
|
||
|
return self[index]
|
||
|
end
|
||
|
})
|