Пример #1
0
 public bool Equals(NVector other)
 {
     return(other != null && x == other.x && y == other.y && level == other.level);
 }
Пример #2
0
 public NVector(NVector pos)
 {
     this.x     = pos.x;
     this.y     = pos.y;
     this.level = pos.level;
 }