Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
ItemStatistics.cs
Go to the documentation of this file.
1public class ItemStatistics : EMono
2{
4
5 public UIText textInn;
6
8
10
12
14
16 {
18 textVisitor.text = stat.visitor + " (" + lastStatistics.visitor + ")";
19 textInn.text = F(stat.inn, lastStatistics.inn);
20 textTourism.text = F(stat.tourism, lastStatistics.tourism);
21 textShip.text = F(stat.ship, lastStatistics.ship);
22 textShop.text = F(stat.shop, lastStatistics.shop);
23 textTax.text = F(stat.tax, lastStatistics.tax);
24 static string F(int a, int b)
25 {
26 return a.ToFormat() + " (" + b.ToFormat() + ")";
27 }
28 }
29}
Definition: EMono.cs:4
static FactionBranch Branch
Definition: EMono.cs:21
Statistics lastStatistics
UIText textTourism
UIText textVisitor
void Refresh(FactionBranch.Statistics stat)
Definition: UIText.cs:6