Mekanism-tilera-Edition/src/minecraft/mekanism/api/InfuseObject.java

22 lines
427 B
Java
Raw Normal View History

package mekanism.api;
/**
* 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 InfusionType type;
2013-02-25 21:02:05 +01:00
/** How much infuse this item stores */
public int stored;
public InfuseObject(InfusionType infusion, int i)
{
type = infusion;
stored = i;
}
}