2014-08-25 11:58:39 +00:00
|
|
|
package WayofTime.alchemicalWizardry.api.alchemy.energy;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2014-10-13 20:33:20 +00:00
|
|
|
public interface IAlchemyGoggles
|
2014-08-25 11:58:39 +00:00
|
|
|
{
|
2014-10-13 20:33:20 +00:00
|
|
|
public boolean showIngameHUD(World world, ItemStack stack, EntityPlayer player);
|
2014-08-25 11:58:39 +00:00
|
|
|
}
|