Applied-Energistics-2-tiler.../crafting/ICraftingHost.java
2014-06-04 19:47:13 -05:00

21 lines
335 B
Java

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();
}