Example #1
0
 public void Stance_Set(StanceID id)
 {
     Stance = id;
 }
Example #2
0
 /// <summary>Toogle the New Stance with the Default Stance▼▲ </summary>
 public void StanceToggle(StanceID NewStance)
 {
     Stance_Toggle(NewStance.ID);
 }
Example #3
0
 /// <summary>Toogle the New Stance with the Default Stance▼▲ </summary>
 public void Stance_Toggle(StanceID NewStance) => Stance_Toggle(NewStance.ID);
Example #4
0
 public void Stance_Set(StanceID id) => Stance = id ?? 0;
Example #5
0
 /// <summary>Toogle the New Stance with the Default Stance▼▲ </summary>
 public virtual void StanceToggle(StanceID NewStance)
 {
     StanceToggle(NewStance.ID);
 }