Beispiel #1
0
 protected void Reset()
 {
     for (int i = 0; i < this.conditions.get_Count(); i++)
     {
         PassiveCondition passiveCondition = this.conditions.get_Item(i);
         passiveCondition.Reset();
     }
 }
 protected void Reset()
 {
     for (int i = 0; i < this.conditions.Count; i++)
     {
         PassiveCondition passiveCondition = this.conditions[i];
         passiveCondition.Reset();
     }
 }