Elin Modding Docs Doc
Loading...
Searching...
No Matches
ExtraHint.cs
1using System;
2
3// Token: 0x020004F9 RID: 1273
4public class ExtraHint : EMono
5{
6 // Token: 0x17000AEE RID: 2798
7 // (get) Token: 0x060021F3 RID: 8691 RVA: 0x000BC405 File Offset: 0x000BA605
8 public ActionMode mode
9 {
10 get
11 {
12 return EMono.scene.actionMode;
13 }
14 }
15
16 // Token: 0x060021F4 RID: 8692 RVA: 0x000BC411 File Offset: 0x000BA611
17 public void OnChangeActionMode()
18 {
19 this.SetActive(this.mode.ShowExtraHint);
20 if (this.mode.ShowExtraHint)
21 {
22 this.Refresh();
23 }
24 }
25
26 // Token: 0x060021F5 RID: 8693 RVA: 0x000BC437 File Offset: 0x000BA637
27 public void Refresh()
28 {
29 this.note.Clear();
30 this.mode.OnShowExtraHint(this.note);
31 this.note.Build();
32 }
33
34 // Token: 0x04001185 RID: 4485
35 public UINote note;
36}
Definition EMono.cs:6