コード例 #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
ファイル: MAnimalCallBacks.cs プロジェクト: mkinahan/Moonman
 /// <summary>Toogle the New Stance with the Default Stance▼▲ </summary>
 public void Stance_Toggle(StanceID NewStance) => Stance_Toggle(NewStance.ID);
コード例 #4
0
ファイル: MAnimalCallBacks.cs プロジェクト: mkinahan/Moonman
 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);
 }