2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.api.infuse;
|
2013-02-14 19:26:13 +01:00
|
|
|
|
2013-04-01 01:12:10 +02:00
|
|
|
/**
|
|
|
|
* InfuseObject - an object associated with an ItemStack that can modify a Metallurgic Infuser's internal infuse.
|
|
|
|
* @author AidanBrady
|
|
|
|
*
|
|
|
|
*/
|
2013-02-14 19:26:13 +01:00
|
|
|
public class InfuseObject
|
|
|
|
{
|
2013-02-25 21:02:05 +01:00
|
|
|
/** The type of infuse this item stores */
|
2013-06-02 03:33:19 +02:00
|
|
|
public InfuseType type;
|
2013-02-25 21:02:05 +01:00
|
|
|
|
|
|
|
/** How much infuse this item stores */
|
2013-02-14 19:26:13 +01:00
|
|
|
public int stored;
|
|
|
|
|
2013-06-02 03:33:19 +02:00
|
|
|
public InfuseObject(InfuseType infusion, int i)
|
2013-02-14 19:26:13 +01:00
|
|
|
{
|
|
|
|
type = infusion;
|
|
|
|
stored = i;
|
|
|
|
}
|
|
|
|
}
|