Mekanism-tilera-Edition/common/mekanism/api/InfuseType.java

32 lines
595 B
Java
Raw Normal View History

package mekanism.api;
2013-07-20 18:10:14 +02:00
import net.minecraft.util.ResourceLocation;
/**
* The types of infuse currently available in Mekanism.
* @author AidanBrady
*
*/
public final class InfuseType
{
/** The name of this infusion */
public String name;
/** The location of this infuse's GUI texture */
2013-07-20 18:10:14 +02:00
public ResourceLocation texture;
/** The infuse's GUI texture X offset. */
public int texX;
/** The infuse's GUI texture Y offset. */
public int texY;
2013-07-20 18:10:14 +02:00
public InfuseType(String s, ResourceLocation location, int x, int y)
{
name = s;
2013-07-20 18:10:14 +02:00
texture = location;
texX = x;
texY = y;
}
}