ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/ISharingEnergyProvider.java

24 lines
587 B
Java
Raw Normal View History

/*
2016-10-31 19:05:29 +01:00
* This file ("ISharingEnergyProvider.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015-2016 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.tile;
import net.minecraft.util.EnumFacing;
2016-11-26 20:43:50 +01:00
public interface ISharingEnergyProvider{
int getEnergyToSplitShare();
boolean doesShareEnergy();
EnumFacing[] getEnergyShareSides();
}