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