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