Files
ox_lib/resource/main.lua

13 lines
358 B
Lua
Raw Normal View History

lib = setmetatable({
name = 'ox_lib'
}, {
__newindex = function(self, name, fn)
exports(name, fn)
rawset(self, name, fn)
end
})
2022-04-17 18:22:19 +02:00
if not LoadResourceFile(lib.name, '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