ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/tile/IEnergyDisplay.java
2015-12-21 22:22:02 +01:00

24 lines
626 B
Java

/*
* This file ("IEnergyDisplay.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015 Ellpeck
*/
package ellpeck.actuallyadditions.tile;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public interface IEnergyDisplay{
@SideOnly(Side.CLIENT)
int getEnergy();
@SideOnly(Side.CLIENT)
int getMaxEnergy();
}