mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
13 lines
352 B
Java
13 lines
352 B
Java
package com.hbm.blocks;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.client.event.RenderGameOverlayEvent;
|
|
|
|
public interface ILookOverlay {
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void printHook(RenderGameOverlayEvent.Pre event, World world, int x, int y, int z);
|
|
}
|