9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 12:09:07 +00:00

Fix commands & support regeneration

This commit is contained in:
Daniel Mills
2020-10-12 00:18:05 -04:00
parent a46f57eaab
commit e72ea21b6b
21 changed files with 486 additions and 120 deletions

View File

@@ -14,15 +14,24 @@ public class Spiraler
retarget(sizeX, sizeZ);
}
public void drain()
{
while(hasNext())
{
next();
}
}
static void Spiral(int X, int Y)
{
}
public void setOffset(int ox, int oz)
public Spiraler setOffset(int ox, int oz)
{
this.ox = ox;
this.oz = oz;
return this;
}
public void retarget(int sizeX, int sizeZ)