forked from LexTheGreat/TLX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3778285.hpp
More file actions
58 lines (50 loc) · 1.06 KB
/
3778285.hpp
File metadata and controls
58 lines (50 loc) · 1.06 KB
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 animationsdialog{
idd = -1;
movingEnable = true;
controlsBackground[] = {
DLG_BACK1, background
};
objects[] = {};
controls[] = {
animationsliste, submit, cancel, dummybutton
};
class DLG_BACK1: RscBackground {
x = 0.29;
y = 0.09;
w = 0.43;
h = 0.75;
};
class background : RscBgRahmen {
x = 0.29;
y = 0.09;
w = 0.43;
h = 0.75;
text = "$STRD_anim_description_header";
};
class animationsliste : RscListBox {
idc = 1;
x = 0.30;
y = 0.12;
w = 0.40;
h = 0.65;
};
class submit : RscButton {
idc = 2;
x = 0.30;
y = 0.78;
w = 0.20;
h = 0.04;
text = "$STRD_anim_description_submit";
};
class cancel : RscButton {
x = 0.51;
y = 0.78;
w = 0.20;
h = 0.04;
text = "$STRD_description_cancel";
action = "closedialog 0;";
};
class dummybutton : RscDummy {
idc = 1009;
};
};