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