public override void Pick(PlanOfAttack plan)
    {
        int            index = Random.Range(0, pickers.Count);
        BaseCardPicker p     = pickers[index];

        p.Pick(plan);
    }
예제 #2
0
 public override void Pick(PlanOfAttack plan)
 {
     for (int i = 0; i < pickers.Count; i++)
     {
         BaseCardPicker p = pickers[i];
         p.Pick(plan);
         if (plan.ability != null)
         {
             break;
         }
     }
 }