Files
ox_lib/resource/main.lua
Linden 55a857fbf8 chore: vscode is dumb
all these spaces make a tab
2021-11-16 19:37:36 +11:00

9 lines
219 B
Lua

-- Creates exports from values assigned to lib.
-- Hacky workaround for Lua Language Server support.
lib = setmetatable({}, {
__newindex = function(self, name, fn)
print('created '..name)
exports(name, fn)
end
})