16 lines
276 B
Java
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);
|
|
|
|
}
|