blob: cd9cff978cc206925161dd5fed70df4f1e8b17e0 (
plain)
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
|
#include "ui/menudef.h"
{
\\ QUIT CREDIT \\
menuDef
{
name "quitCredit"
visible 0
fullscreen 1
rect 0 0 640 480
focusColor 1 .75 0 1
style 1
border 0
onEsc
{
uiScript "quit"
}
itemDef
{
name exitclickbox
style WINDOW_STYLE_FILLED
rect 0 0 640 480
type ITEM_TYPE_BUTTON
visible 1
backcolor 0 0 0 1
action
{
play "sound/misc/nomenu.wav";
close quitCredit;
uiScript "quit"
}
}
itemDef
{
name programming
group grpidcredit
rect 0 160 640 30
textalign 1
textalignx 320
textaligny 10
textscale .35
text "INSERT CREDITS HERE"
forecolor 1 1 1 1
decoration
visible 1
}
}
}
|