16 lines
316 B
Java

package com.hbm.interfaces;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public interface IFactory {
boolean isStructureValid(World world);
public long getPowerScaled(long i);
public int getProgressScaled(int i);
public boolean isProcessable(ItemStack item);
}