-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
44 lines (38 loc) · 828 Bytes
/
fxmanifest.lua
File metadata and controls
44 lines (38 loc) · 828 Bytes
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
fx_version 'cerulean'
game 'gta5'
author 'mufty'
description 'MRP core module'
version '0.0.1'
dependencies {
"yarn"
}
ui_page 'client/ui/index.html'
files {
'config/client.json',
'client/objectid.js',
'client/helpers.js',
'client/ui/fonts/coolvetica_rg.ttf',
'client/ui/scripts/*.js',
'client/ui/styles/*.css',
'client/ui/images/*.png',
'client/ui/index.html',
}
client_scripts {
'shared/debug.js',
'shared/locale.lua',
'shared/MRPShared.lua',
'client/entityEnumerator.lua',
'client/utils.lua',
'client.js',
'client/noclip.lua',
'client/mechanics/*.lua',
'client/mechanics/*.js',
'client/world/*.js',
'client/system/*.js',
'client/system/*.lua',
}
server_scripts {
'shared/locale.lua',
'shared/MRPShared.lua',
'server.js',
}