public bool Equals(NVector other) { return(other != null && x == other.x && y == other.y && level == other.level); }
public NVector(NVector pos) { this.x = pos.x; this.y = pos.y; this.level = pos.level; }