public static void BoxAgent(LSAgent agent)
 {
     if (System.Object.ReferenceEquals(agent, null))
     {
         return;
     }
     BoxedAgents.Add(agent);
     agent.IsHighlighted = true;
 }
Ejemplo n.º 2
0
 public static void BoxAgent(LSAgent agent)
 {
     if (agent == null)
     {
         return;
     }
     BoxedAgents.Add(agent);
     agent.IsHighlighted = true;
 }