Applied-Energistics-2-tiler.../crafting/ICraftingParent.java
2014-06-03 23:37:47 -05:00

16 lines
276 B
Java

package appeng.crafting;
import java.util.Collection;
import net.minecraft.nbt.NBTTagCompound;
public interface ICraftingParent
{
Collection<? extends ICraftingParent> getSubJobs();
void writeToNBT(NBTTagCompound out);
void removeChild(CraftingTask craftingTask);
}