Applied-Energistics-2-tiler.../crafting/ICraftingHost.java
2014-06-22 02:00:38 -05:00

21 lines
356 B
Java

package appeng.crafting;
import appeng.api.networking.IGrid;
import appeng.api.networking.security.BaseActionSource;
public interface ICraftingHost
{
/**
* Get Crafting cache for the host.
*/
IGrid getGrid();
/**
* get source of moving items around.
*
* @return {@link BaseActionSource} of host.
*/
BaseActionSource getActionSrc();
}