Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
LayerJournal.cs
Go to the documentation of this file.
1public class LayerJournal : ELayer
2{
3 public const int IdTabLocation = 2;
4
5 public const int IdTabReligion = 4;
6
7 public override bool blockWidgetClick => false;
8
9 public override bool HeaderIsListOf(int id)
10 {
11 if (id >= 2)
12 {
13 return id <= 4;
14 }
15 return false;
16 }
17
18 public void SwitchPopulation(int _queryTarget)
19 {
20 ContentPopulation.queryTarget = _queryTarget;
21 ContentPopulation.queryType = 0;
22 windows[0].SwitchContent<ContentPopulation>();
23 }
24
25 public override void OnSwitchContent(Window window)
26 {
27 }
28}
Definition: ELayer.cs:4
const int IdTabReligion
Definition: LayerJournal.cs:5
override void OnSwitchContent(Window window)
Definition: LayerJournal.cs:25
override bool HeaderIsListOf(int id)
Definition: LayerJournal.cs:9
override bool blockWidgetClick
Definition: LayerJournal.cs:7
const int IdTabLocation
Definition: LayerJournal.cs:3
void SwitchPopulation(int _queryTarget)
Definition: LayerJournal.cs:18
List< Window > windows
Definition: Layer.cs:116
Definition: Window.cs:13