Mekanism-tilera-Edition/common/mekanism/api/InfuseObject.java
2013-06-28 18:01:00 -04:00

21 lines
423 B
Java

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