about 5 minutes of work...

This commit is contained in:
AlgorithmX2
2014-06-04 19:47:13 -05:00
parent faad4a6ba2
commit 141be04aaf
2 changed files with 22 additions and 0 deletions
+11
View File
@@ -1,10 +1,21 @@
package appeng.crafting;
import net.minecraft.world.World;
import appeng.me.cache.CraftingCache;
public interface ICraftingHost
{
/**
* Get Crasfting cache for the host.
*/
CraftingCache getCraftingCache();
/**
* required for crafting calculations.
*
* @return world the host is located in
*/
World getWorld();
}