public ConnectionNode(Connection data, RoomNode from, RoomNode to, GUIStyle handleStyle, GUIStyle activeStyle, int handleWidth)
 {
     Data             = data;
     From             = from;
     To               = to;
     this.handleStyle = handleStyle;
     this.activeStyle = activeStyle;
     this.handleWidth = handleWidth;
 }
 public ConnectionNode(ConnectionBase connection, RoomNode from, RoomNode to)
 {
     Connection = connection;
     From       = from;
     To         = to;
 }