コード例 #1
0
 public bool Equals(CoordI other)
 {
     return X == other.X && Y == other.Y;
 }
コード例 #2
0
 public CoordI(CoordI other)
 {
     X = other.X;
     Y = other.Y;
 }
コード例 #3
0
 public void Copy(CoordI other)
 {
     X = other.X;
     Y = other.Y;
 }