21 lines
536 B
Java
21 lines
536 B
Java
package WayofTime.alchemicalWizardry.common.items.potion;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
|
|
|
public class MundanePowerCatalyst extends PowerCatalyst
|
|
{
|
|
public MundanePowerCatalyst(int id)
|
|
{
|
|
super(id, 1);
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerIcons(IconRegister iconRegister)
|
|
{
|
|
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:MundanePowerCatalyst");
|
|
}
|
|
}
|