Mekanism-tilera-Edition/common/mekanism/api/infuse/InfuseObject.java

22 lines
430 B
Java
Raw Normal View History

package mekanism.api.infuse;
/**
* InfuseObject - an object associated with an ItemStack that can modify a Metallurgic Infuser's internal infuse.
* @author AidanBrady
*
*/
public class InfuseObject
{
2013-02-25 21:02:05 +01:00
/** The type of infuse this item stores */
public InfuseType type;
2013-02-25 21:02:05 +01:00
/** How much infuse this item stores */
public int stored;
public InfuseObject(InfuseType infusion, int i)
{
type = infusion;
stored = i;
}
}