/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/cofh/api/energy/IEnergyConnection.java
21 строка
579 B
HbmMods
let's just hope that didn't break everything
22 июн 2020, 22:31
22 июн 2020, 22:31
bdc0cd4
Код
Авторство
О чём код?
package cofh.api.energy; import net.minecraftforge.common.util.ForgeDirection; /** * Implement this interface on TileEntities which should connect to energy transportation blocks. This is intended for blocks which generate energy but do not * accept it; otherwise just use IEnergyHandler. * <p> * Note that {@link IEnergyHandler} is an extension of this. * * @author King Lemming * */ public interface IEnergyConnection { /** * Returns TRUE if the TileEntity can connect on a given side. */ boolean canConnectEnergy(ForgeDirection from); }