public bool Equals(CoordI other)
 {
     return X == other.X && Y == other.Y;
 }
 public CoordI(CoordI other)
 {
     X = other.X;
     Y = other.Y;
 }
 public void Copy(CoordI other)
 {
     X = other.X;
     Y = other.Y;
 }