示例#1
0
 public SwipeCondition(Person p, JointType leftOrRightHand)
     : base(p)
 {
     _index = 0;
     _hand = leftOrRightHand;
     _checker = new Checker(p);
 }
示例#2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p">The assosiated person</param>
 public WaveRightCondition(Person p)
     : base(p)
 {
     _index = 0;
     checker = new Checker(p);
 }
示例#3
0
 public ZoomCondition(Person p)
     : base(p)
 {
     _index = 0;
     checker = new Checker(p);
 }