-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path2085272.hpp
58 lines (50 loc) · 1.02 KB
/
2085272.hpp
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
class lotto {
idd = -1;
movingEnable = true;
controlsBackground[] = {
DLG_BACK1, background
};
objects[] = { };
controls[] = {
ticketlist, submit, cancel, dummybutton
};
class DLG_BACK1: RscBackground {
x = 0.40;
y = 0.35;
w = 0.30;
h = 0.20;
};
class background : RscBgRahmen {
x = 0.40;
y = 0.35;
w = 0.30;
h = 0.20;
text = $STRD_lotto_title;
};
class ticketlist : RscCombo {
idc = 1;
x = 0.42;
y = 0.40;
w = 0.26;
h = 0.04;
};
class submit : RscButton {
idc = 2;
x = 0.42;
y = 0.45;
w = 0.26;
h = 0.04;
text = $STRD_lotto_buyticket;
};
class cancel : RscButton {
x = 0.42;
y = 0.50;
w = 0.26;
h = 0.04;
text = $STRD_lotto_cancel;
action = "closedialog 0";
};
class dummybutton : RscDummy {
idc = 1005;
};
};