11 lines
299 B
Java
11 lines
299 B
Java
![]() |
package WayofTime.alchemicalWizardry.api.alchemy.energy;
|
||
|
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
public interface IAlchemyGoggles
|
||
|
{
|
||
|
public boolean showIngameHUD(World world, ItemStack stack, EntityPlayer player);
|
||
|
}
|