Elin Modding Docs Doc
Loading...
Searching...
No Matches
NotificationHome.cs
1using System;
2
3// Token: 0x0200062A RID: 1578
5{
6 // Token: 0x06002C37 RID: 11319 RVA: 0x000F899F File Offset: 0x000F6B9F
7 public override void OnClick()
8 {
9 EClass.ui.AddLayer<LayerHome>();
10 }
11
12 // Token: 0x06002C38 RID: 11320 RVA: 0x000F89AC File Offset: 0x000F6BAC
13 public override void OnRefresh()
14 {
15 this.text = "1.".TagSize("00", this.item.button.mainText.fontSize - 2);
16 }
17
18 // Token: 0x17000C9C RID: 3228
19 // (get) Token: 0x06002C39 RID: 11321 RVA: 0x000F89DA File Offset: 0x000F6BDA
20 public override Action<UITooltip> onShowTooltip
21 {
22 get
23 {
24 return delegate(UITooltip a)
25 {
26 a.textMain.text = "factionRank".lang() + ": " + EClass.Branch.RankText;
27 };
28 }
29 }
30}