コード例 #1
0
 public bool Equals(RegionId other)
 {
     return(Pos.Equals(other.Pos) && Dimension == other.Dimension);
 }
コード例 #2
0
 protected bool Equals(Chunk other)
 {
     return(Pos.Equals(other.Pos));
 }
コード例 #3
0
 protected bool Equals(ChunkSection other)
 {
     return(Pos.Equals(other.Pos) && Y == other.Y);
 }