blob: 3b03e9b43df6f63bf7757367303c3b09b3bcb6bf [file] [log] [blame] [raw]
package universalelectricity.prefab.implement;
import net.minecraftforge.common.ForgeDirection;
/**
* This should be applied on tile entities that can provide redstone power
*
* @author Calclavia
*
*/
public interface IRedstoneProvider
{
public boolean isPoweringTo(ForgeDirection side);
public boolean isIndirectlyPoweringTo(ForgeDirection side);
}