public Node(N8Tronic owner)
 {
     this._owner = owner;
 }
 public Node(NodeType t, N8Tronic owner)
 {
     _type = t;
     this._owner = owner;
 }