Esempio n. 1
0
 public BEHControl(BehCF act, Pred persistent, int priorty, ICancellee cT)
 {
     action   = act;
     persist  = persistent;
     priority = priorty;
     this.cT  = cT;
 }
Esempio n. 2
0
 public BehCFc(BehCF f, int p)
 {
     func     = f;
     priority = p;
     lazyFunc = null;
 }
Esempio n. 3
0
 public BEHControl(BehCFc act, Pred persistent, ICancellee?cT = null)
 {
     action   = act.Func(this.cT = cT ?? Cancellable.Null);
     persist  = persistent;
     priority = act.priority;
 }