public bool Equals(RegionId other)
 {
     return(Pos.Equals(other.Pos) && Dimension == other.Dimension);
 }
 protected bool Equals(Chunk other)
 {
     return(Pos.Equals(other.Pos));
 }
Exemple #3
0
 protected bool Equals(ChunkSection other)
 {
     return(Pos.Equals(other.Pos) && Y == other.Y);
 }