-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMoneyUI.xml
More file actions
69 lines (69 loc) · 2.91 KB
/
MoneyUI.xml
File metadata and controls
69 lines (69 loc) · 2.91 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
59
60
61
62
63
64
65
66
67
68
69
<!-- Money panel -->
<HorizontalLayout id="moneyMain" offsetXY="80 0" width="61%" height="60" rectAlignment="LowerCenter">
<Panel id="WhiteMoneyPanel" class="moneyPanel" color="White">
<VerticalLayout>
<Text id="WhiteName">White Player</Text>
<Text id="WhiteMoney" class="moneyText">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="BrownMoneyPanel" class="moneyPanel" color="Brown">
<VerticalLayout>
<Text id="BrownName" color="White">Brown Player</Text>
<Text id="BrownMoney" class="moneyText" color="White">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="RedMoneyPanel" class="moneyPanel" color="Red">
<VerticalLayout>
<Text id="RedName" color="White">Red Player</Text>
<Text id="RedMoney" class="moneyText" color="White">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="OrangeMoneyPanel" class="moneyPanel" color="Orange">
<VerticalLayout>
<Text id="OrangeName" color="White">Orange Player</Text>
<Text id="OrangeMoney" class="moneyText" color="White">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="YellowMoneyPanel" class="moneyPanel" color="Yellow">
<VerticalLayout>
<Text id="YellowName">Yellow Player</Text>
<Text id="YellowMoney" class="moneyText">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="GreenMoneyPanel" class="moneyPanel" color="Green">
<VerticalLayout>
<Text id="GreenName">Green Player</Text>
<Text id="GreenMoney" class="moneyText">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="TealMoneyPanel" class="moneyPanel" color="Teal">
<VerticalLayout>
<Text id="TealName">Teal Player</Text>
<Text id="TealMoney" class="moneyText">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="BlueMoneyPanel" class="moneyPanel" color="Blue">
<VerticalLayout>
<Text id="BlueName" color="White">Blue Player</Text>
<Text id="BlueMoney" class="moneyText" color="White">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="PurpleMoneyPanel" class="moneyPanel" color="Purple">
<VerticalLayout>
<Text id="PurpleName" color="White">Purple Player</Text>
<Text id="PurpleMoney" class="moneyText" color="White">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="PinkMoneyPanel" class="moneyPanel" color="Pink">
<VerticalLayout>
<Text id="PinkName">Pink Player</Text>
<Text id="PinkMoney" class="moneyText">$3200</Text>
</VerticalLayout>
</Panel>
<Panel id="CashPoolPanel" class="moneyPanel" color="Gray">
<VerticalLayout>
<Text>Cash Pool</Text>
<Text id="CashPool" class="moneyText">$0</Text>
</VerticalLayout>
</Panel>
</HorizontalLayout>