Exemplo n.º 1
0
 public void CopyTo(QuestMonitorCondition dst)
 {
     dst.Clear();
     if (this.actions != null && this.actions.Length > 0)
     {
         dst.actions = new List <UnitMonitorCondition>((IEnumerable <UnitMonitorCondition>) this.actions);
     }
     if (this.goals == null || this.goals.Length <= 0)
     {
         return;
     }
     dst.goals = new List <UnitMonitorCondition>((IEnumerable <UnitMonitorCondition>) this.goals);
 }