Esempio n. 1
0
 public void SkipReaction()
 {
     for (int i = 0; i < requiredConditions.Length; i++)
     {
         if (!AllConditions.CheckCondition(requiredConditions[i]))
         {
             return;
         }
     }
     if (reactionCollection)
     {
         reactionCollection.Skip();
     }
 }
 public void Skip()
 {
     newReactionCollection.Skip();
 }