示例#1
0
 public int Count_Walk_Length()
 {
     return(Actions_All.FindAll(
                x =>
                x is I_Movement_Action
                &&
                x.GetType() != typeof(PA_Stay)
                ).Count);
 }
示例#2
0
 public PD_Action Find_LastCommand()
 {
     return(Actions_All.GetLast());
 }