aboutsummaryrefslogtreecommitdiff
path: root/src/Java/cofh/energy/IEnergyStorage.java
blob: d105df55c1f61339e0143282b937aea908137dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package cofh.energy;

public abstract interface IEnergyStorage
{
  public abstract int receiveEnergy(int paramInt, boolean paramBoolean);
  
  public abstract int extractEnergy(int paramInt, boolean paramBoolean);
  
  public abstract int getEnergyStored();
  
  public abstract int getMaxEnergyStored();
}