public void AddAgent(Dictionary <string, dynamic> properties)
 {
     Agent = new CAGraphCellAgent(this, properties);
     Parent.AddAgentCell(Position);
 }
 public void AddAgent(CAGraphCellAgent agent)
 {
     Agent = agent.Copy(this);
     Parent.AddAgentCell(Position);
 }