-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path__resource.lua
54 lines (43 loc) · 935 Bytes
/
__resource.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
53
54
ui_page "html/index.html"
exports {
'getBattery',
'IsPlayerInCall',
'IsPlayerUsingPhone'
}
server_export 'generatePhoneNumber'
files {
"html/index.html",
"html/main.js",
"html/main.css",
"html/background.jpg",
"html/cursor.png",
"html/pointer.png",
"html/text.png",
"sounds/lowBattery.ogg",
"sounds/chargerConnection.ogg",
"apps/menu/js.js",
"apps/menu/html.html",
"apps/menu/css.css",
"apps/contacts/js.js",
"apps/contacts/html.html",
"apps/contacts/css.css",
"apps/contacts/creator/css.css",
"apps/contacts/creator/html.html",
"apps/navigator/js.js",
"apps/navigator/html.html",
"apps/navigator/css.css"
}
client_scripts {
"client/main.lua",
"client/animation.lua",
"client/battery.lua",
"apps/menu/client.lua",
"apps/contacts/client.lua"
}
server_scripts {
"@mysql-async/lib/MySQL.lua",
"server/main.lua",
"apps/menu/server.lua",
"apps/contacts/server.lua",
"apps/navigator/server.lua"
}