blob: 1dc1c610cfe09c086e9130c739a78995859e10db (
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
53
54
55
56
57
58
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
height="50"
layout="topleft"
mouse_opaque="false"
name="profile_overflow_menu"
width="120">
<menu_item_call
label="Pay"
layout="topleft"
name="pay">
<menu_item_call.on_click
function="Profile.Pay" />
</menu_item_call>
<menu_item_call
label="Share"
layout="topleft"
name="share">
<menu_item_call.on_click
function="Profile.Share" />
</menu_item_call>
<menu_item_call
label="Kick"
layout="topleft"
name="kick">
<menu_item_call.on_click
function="Profile.Kick" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
<menu_item_call
label="Freeze"
layout="topleft"
name="freeze">
<menu_item_call.on_click
function="Profile.Freeze" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
<menu_item_call
label="Unfreeze"
layout="topleft"
name="unfreeze">
<menu_item_call.on_click
function="Profile.Unfreeze" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
<menu_item_call
label="CSR"
layout="topleft"
name="csr">
<menu_item_call.on_click
function="Profile.CSR" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
</toggleable_menu>
|