Iris Complex

This commit is contained in:
Daniel Mills
2020-10-24 01:59:53 -04:00
parent af29b2833f
commit ed40dc34cf
10 changed files with 330 additions and 12 deletions

View File

@@ -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;
}
}