Elin Modding Docs Doc
Loading...
Searching...
No Matches
LayerJournal.cs
1using System;
2
3// Token: 0x02000598 RID: 1432
4public class LayerJournal : ELayer
5{
6 // Token: 0x17000BAC RID: 2988
7 // (get) Token: 0x0600273F RID: 10047 RVA: 0x000DE6E8 File Offset: 0x000DC8E8
8 public override bool blockWidgetClick
9 {
10 get
11 {
12 return false;
13 }
14 }
15
16 // Token: 0x06002740 RID: 10048 RVA: 0x000DE6EB File Offset: 0x000DC8EB
17 public override bool HeaderIsListOf(int id)
18 {
19 return id >= 2 && id <= 4;
20 }
21
22 // Token: 0x06002741 RID: 10049 RVA: 0x000DE6FA File Offset: 0x000DC8FA
23 public void SwitchPopulation(int _queryTarget)
24 {
25 ContentPopulation.queryTarget = _queryTarget;
26 ContentPopulation.queryType = 0;
27 this.windows[0].SwitchContent<ContentPopulation>();
28 }
29
30 // Token: 0x06002742 RID: 10050 RVA: 0x000DE71A File Offset: 0x000DC91A
31 public override void OnSwitchContent(Window window)
32 {
33 }
34
35 // Token: 0x040015BD RID: 5565
36 public const int IdTabLocation = 2;
37
38 // Token: 0x040015BE RID: 5566
39 public const int IdTabReligion = 4;
40}