forked from Xogy/xsound
-
Notifications
You must be signed in to change notification settings - Fork 11
/
fxmanifest.lua
46 lines (36 loc) · 842 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
fx_version 'cerulean'
game 'gta5'
client_scripts {
"config.lua",
"client/main.lua",
"client/events.lua",
"client/commands.lua",
"client/exports/info.lua",
"client/exports/play.lua",
"client/exports/manipulation.lua",
"client/exports/events.lua",
"client/effects/main.lua",
"client/emulator/interact_sound/client.lua",
"addon/**/client/*.lua",
'core/client.lua',
}
server_scripts {
"config.lua",
"server/exports/play.lua",
"server/exports/manipulation.lua",
"server/emulator/interact_sound/server.lua",
"addon/**/server/*.lua",
'core/server.lua',
}
ui_page "html/index.html"
files {
"html/index.html",
"html/style.css",
"html/scripts/config.js",
"html/scripts/listener.js",
"html/scripts/listener2.js",
"html/scripts/SoundPlayer.js",
"html/scripts/functions.js",
"html/sounds/*.ogg",
"html/sounds/*.mp3",
}