9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-02 13:56:40 +00:00

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

View File

@@ -39,7 +39,6 @@ public class RNG extends Random
return new RNG(sx + signature);
}
@Deprecated
public RNG nextRNG()
{
return new RNG(nextLong());