Esempio n. 1
0
 internal void _WaitNumOf(int nNum, params IYieldInstruction[] conditions)
 {
     _doneInstructions = new List <IYieldInstruction>();
     _arrInstructions  = conditions;
     _type             = _WaitType.NumOf;
     _number           = nNum;
 }
Esempio n. 2
0
 internal void _WaitOneOf(params IYieldInstruction[] conditions)
 {
     _arrInstructions = conditions;
     _type            = _WaitType.OneOf;
 }
Esempio n. 3
0
 internal void _WaitAll(params IYieldInstruction[] conditions)
 {
     _arrInstructions = conditions;
     _type            = _WaitType.All;
 }
Esempio n. 4
0
 public void _WaitNumOf(int nNum, params ICondition[] conditions)
 {
     _arrConditions = conditions;
     _type          = _WaitType.NumOf;
     _number        = nNum;
 }
Esempio n. 5
0
 public void _WaitOneOf(params ICondition[] conditions)
 {
     _arrConditions = conditions;
     _type          = _WaitType.OneOf;
 }
Esempio n. 6
0
 public void _WaitAll(params ICondition[] conditions)
 {
     _arrConditions = conditions;
     _type          = _WaitType.All;
 }