Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
HotItemGameAction.cs
Go to the documentation of this file.
2{
3 public virtual Act act => null;
4
5 public override bool IsGameAction => true;
6
7 public override void OnClick(ButtonHotItem b, Hotbar h)
8 {
9 hotbar.Select(this);
10 }
11
12 public override void OnRightClick(ButtonHotItem b)
13 {
14 hotbar.Select(this);
15 }
16
17 public override void OnMarkMapHighlights()
18 {
19 if (act != null)
20 {
22 }
23 }
24}
Definition: ACT.cs:62
virtual void OnMarkMapHighlights()
Definition: ACT.cs:467
override bool IsGameAction
override void OnRightClick(ButtonHotItem b)
override void OnClick(ButtonHotItem b, Hotbar h)
override void OnMarkMapHighlights()
Hotbar hotbar
Definition: HotItem.cs:8
Definition: Hotbar.cs:5
void Select(HotItem item)
Definition: Hotbar.cs:199