1
0
mirror of https://github.com/chylex/Hardcore-Ender-Expansion.git synced 2025-08-18 11:31:45 +02:00
Files
2015-03-13 10:12:20 +01:00

23 lines
529 B
Java

package thaumcraft.api;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.item.ItemStack;
/**
*
* @author Azanor
*
* Equipped head slot items that extend this class will be able to perform most functions that
* goggles of revealing can apart from view nodes which is handled by IRevealer.
*
*/
public interface IGoggles {
/*
* If this method returns true things like block essentia contents will be shown.
*/
public boolean showIngamePopups(ItemStack itemstack, EntityLivingBase player);
}