Begun work on the crafting memory / tree
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user