/**
  * Creates a radar target with specified parameters.
  * @param name Name of the target.
  * @param position TargetPosition objects representing the target.
  */
 public Target(string name, TargetPosition position)
 {
     this.name = name;
     positions = new List <TargetPosition>();
     positions.Add(position);
 }