Applied-Energistics-2-tiler.../crafting/ICraftingHost.java

22 lines
335 B
Java
Raw Normal View History

package appeng.crafting;
import net.minecraft.world.World;
2014-06-05 02:47:13 +02:00
import appeng.me.cache.CraftingCache;
public interface ICraftingHost
{
2014-06-05 02:47:13 +02:00
/**
* Get Crasfting cache for the host.
*/
CraftingCache getCraftingCache();
/**
* required for crafting calculations.
*
* @return world the host is located in
*/
World getWorld();
}