Implement Crafting CPU selector widget

This commit is contained in:
alongstringofnumbers
2022-08-17 15:54:03 -07:00
parent 327b26559f
commit b84c25e64c
14 changed files with 788 additions and 48 deletions
@@ -120,6 +120,12 @@ public final class CraftingCPUCluster implements IAECluster, ICraftingCPU
this.max = max;
}
@Override
public IAEItemStack getFinalOutput()
{
return finalOutput;
}
public boolean isDestroyed()
{
return this.isDestroyed;
@@ -1432,11 +1438,13 @@ public final class CraftingCPUCluster implements IAECluster, ICraftingCPU
return this.elapsedTime;
}
@Override
public long getRemainingItemCount()
{
return this.remainingItemCount;
}
@Override
public long getStartItemCount()
{
return this.startItemCount;