forked from LeonardoSoares98/lc_fuel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxmanifest.lua
52 lines (42 loc) · 814 Bytes
/
fxmanifest.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
fx_version 'cerulean'
game 'gta5'
author 'LixeiroCharmoso'
ui_page "nui/ui.html"
lua54 'yes'
escrow_ignore {
'**'
}
client_scripts {
"client/client.lua",
"client/client_gas.lua",
"client/client_electric.lua",
}
server_scripts {
"@mysql-async/lib/MySQL.lua",
"server/server.lua",
}
shared_scripts {
"lang/*.lua",
"config.lua",
"@lc_utils/functions/loader.lua",
}
files {
"version",
"nui/lang/*",
"nui/ui.html",
"nui/panel.js",
"nui/css/*",
"nui/images/*",
"nui/fonts/Technology.woff",
}
exports {
"GetFuel",
"SetFuel",
-- Just another way to call the exports in case someone does it like this...
"getFuel",
"setFuel",
}
dependency "lc_utils"
provide "LegacyFuel"
data_file 'DLC_ITYP_REQUEST' 'stream/prop_electric_01.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/prop_eletricpistol.ytyp'