2016-08-31 20:16:36 +02:00
|
|
|
/*
|
2016-10-31 19:05:29 +01:00
|
|
|
* This file ("ISharingEnergyProvider.java") is part of the Actually Additions mod for Minecraft.
|
2016-08-31 20:16:36 +02:00
|
|
|
* 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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2016-08-31 20:16:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
|
|
|
|
2016-12-18 17:28:29 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2016-08-31 20:16:36 +02:00
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public interface ISharingEnergyProvider {
|
2016-08-31 20:16:36 +02:00
|
|
|
|
|
|
|
int getEnergyToSplitShare();
|
|
|
|
|
|
|
|
boolean doesShareEnergy();
|
|
|
|
|
|
|
|
EnumFacing[] getEnergyShareSides();
|
|
|
|
|
2016-12-18 17:28:29 +01:00
|
|
|
boolean canShareTo(TileEntity tile);
|
2016-08-31 20:16:36 +02:00
|
|
|
}
|