2014-01-17 14:12:49 -05:00
|
|
|
package thaumcraft.api;
|
|
|
|
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Azanor
|
2014-01-17 21:05:38 +00:00
|
|
|
* <p/>
|
|
|
|
* 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.
|
2014-01-17 14:12:49 -05:00
|
|
|
*/
|
|
|
|
|
2014-01-17 21:05:38 +00:00
|
|
|
public interface IGoggles {
|
2014-01-17 14:12:49 -05:00
|
|
|
/*
|
|
|
|
* If this method returns true things like block essentia contents will be shown.
|
|
|
|
*/
|
|
|
|
public boolean showIngamePopups(ItemStack itemstack, EntityLivingBase player);
|
|
|
|
}
|