2014-08-25 07:58:39 -04:00
|
|
|
package WayofTime.alchemicalWizardry.api.alchemy.energy;
|
|
|
|
|
2014-10-13 22:33:20 +02:00
|
|
|
public interface IReagentContainer
|
2014-08-25 07:58:39 -04:00
|
|
|
{
|
2014-10-13 22:33:20 +02:00
|
|
|
public ReagentStack getReagent();
|
2014-08-25 07:58:39 -04:00
|
|
|
|
|
|
|
public int getReagentStackAmount();
|
|
|
|
|
|
|
|
public int getCapacity();
|
|
|
|
|
|
|
|
public int fill(ReagentStack resource, boolean doFill);
|
|
|
|
|
|
|
|
public ReagentStack drain(int maxDrain, boolean doDrain);
|
2014-10-13 22:33:20 +02:00
|
|
|
|
2014-08-25 07:58:39 -04:00
|
|
|
public ReagentContainerInfo getInfo();
|
|
|
|
}
|