mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-07 08:16:31 +00:00
Iris Complex
This commit is contained in:
@@ -25,4 +25,14 @@ public class BlockPosition
|
||||
{
|
||||
return z >> 4;
|
||||
}
|
||||
|
||||
public boolean is(int x, int z)
|
||||
{
|
||||
return this.x == x && this.z == z;
|
||||
}
|
||||
|
||||
public boolean is(int x, int y, int z)
|
||||
{
|
||||
return this.x == x && this.y == y && this.z == z;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user