2015-12-21 22:18:33 +01:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2015-12-30 22:02:15 +01:00
|
|
|
package de.ellpeck.actuallyadditions.tile;
|
2015-12-21 22:18:33 +01:00
|
|
|
|
2015-12-21 22:22:02 +01:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
2015-12-21 22:18:33 +01:00
|
|
|
public interface IEnergyDisplay{
|
|
|
|
|
2015-12-21 22:22:02 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-12-21 22:18:33 +01:00
|
|
|
int getEnergy();
|
|
|
|
|
2015-12-21 22:22:02 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-12-21 22:18:33 +01:00
|
|
|
int getMaxEnergy();
|
|
|
|
}
|