File: gameover

package info (click to toggle)
blobandconquer 1.07-dfsg-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 104,944 kB
  • ctags: 3,385
  • sloc: cpp: 38,991; ansic: 362; makefile: 186
file content (73 lines) | stat: -rw-r--r-- 827 bytes parent folder | download | duplicates (6)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Grid {

	name = GameOverGrid;
	x = 0;
	y = 0;
	width = 550;
	height = 50;
	cellSpacing = 9;
	rows = 1;
	cols = 3;
	valign = 1;
	halign = 1;

};

Widget {
	
	grid = GameOverGrid;
	widgetType = BUTTON;
	name = Reload;
	label = Retry;
	groupName = gameOverWidgets;
	enabled = 1;
	visible = 0;
	x = 0;
	y = 0;
	colSpan = 1;
	
	valign = 1;
	
	backgroundColor = 0 50 100;

};

Widget {
	
	grid = GameOverGrid;
	widgetType = BUTTON;
	name = Load;
	label = Load Game;
	groupName = gameOverWidgets;
	enabled = 1;
	visible = 0;
	x = 1;
	y = 0;
	colSpan = 1;
	
	valign = 1;
	
	backgroundColor = 0 50 100;

};

Widget {
	
	grid = GameOverGrid;
	widgetType = BUTTON;
	name = Quit;
	label = Quit;
	groupName = gameOverWidgets;
	enabled = 1;
	visible = 0;
	x = 2;
	y = 0;
	colSpan = 1;
	
	valign = 1;
	
	backgroundColor = 150 0 0;

};

@END@