Files
ox_lib/resource/main.lua
T

11 lines
340 B
Lua
Raw Normal View History

2021-11-16 11:15:34 +11:00
lib = setmetatable({}, {
__newindex = function(self, name, fn)
2021-11-16 19:37:36 +11:00
exports(name, fn)
rawset(self, name, fn)
2021-11-16 19:37:36 +11:00
end
})
2022-04-17 18:22:19 +02:00
if not LoadResourceFile('ox_lib', 'web/build/index.html') then
error('Unable to load UI. Build ox_lib or download the latest release.\n ^3https://github.com/overextended/ox_lib/releases/latest/download/ox_lib.zip^0')
end