Elin Modding Docs Doc
Loading...
Searching...
No Matches
LayerAdmin.cs
1using System;
2
3// Token: 0x02000522 RID: 1314
4public class LayerAdmin : ELayer
5{
6 // Token: 0x0600234B RID: 9035 RVA: 0x000C6CE0 File Offset: 0x000C4EE0
7 public override void OnSwitchContent(Window window)
8 {
9 int idTab = window.idTab;
10 if (idTab == 0)
11 {
12 this.RefreshResearch();
13 return;
14 }
15 if (idTab != 1)
16 {
17 return;
18 }
19 this.RefreshPolicy();
20 }
21
22 // Token: 0x0600234C RID: 9036 RVA: 0x000C6D09 File Offset: 0x000C4F09
23 public void RefreshResearch()
24 {
25 }
26
27 // Token: 0x0600234D RID: 9037 RVA: 0x000C6D0B File Offset: 0x000C4F0B
28 public void RefreshPolicy()
29 {
30 }
31}