Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
BaseStance.cs
Go to the documentation of this file.
1public class BaseStance : Condition
2{
3 public override bool CanManualRemove => true;
4
5 public override int GetPhase()
6 {
7 return 0;
8 }
9
11 {
12 return new NotificationStance
13 {
14 condition = this
15 };
16 }
17
18 public override void Tick()
19 {
20 }
21}
override void Tick()
Definition: BaseStance.cs:18
override bool CanManualRemove
Definition: BaseStance.cs:3
override BaseNotification CreateNotification()
Definition: BaseStance.cs:10
override int GetPhase()
Definition: BaseStance.cs:5