Begun work on the crafting memory / tree

This commit is contained in:
AlgorithmX2
2014-06-03 23:37:47 -05:00
parent 883292a7b1
commit 98f0e59b67
4 changed files with 212 additions and 0 deletions
+16
View File
@@ -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);
}