Applied-Energistics-2-tiler.../src/api/java/appeng/api/networking/IControllerCache.java

21 lines
396 B
Java

package appeng.api.networking;
import appeng.api.config.Actionable;
import appeng.api.storage.data.IAEItemStack;
public interface IControllerCache extends IGridCache {
boolean requiresChannels();
boolean canRun();
boolean hasConflict();
boolean hasController();
IGridHost getController();
boolean requestCrafting(IAEItemStack stack, Actionable actionable);
}