Beispiel #1
0
 /// <summary>
 /// Create A new generic node. This should be subclassed
 /// </summary>
 /// <param name="ID">The ID of the node</param>
 /// <param name="Coordinates">The Coordinates of the node</param>
 public Node(int id, Point Coordinates)
 {
     Info = new NodeInfo(id, Coordinates);
     Init();
 }
Beispiel #2
0
 /// <summary>
 /// Create A new generic node. This should be subclassed
 /// </summary>
 /// <param name="ID">The ID of the node</param>
 /// <param name="Coordinates">The Coordinates of the node</param>
 public Node(String id, Point Coordinates)
 {
     Info = new NodeInfo(int.Parse(id), Coordinates);
     Init();
 }