Gave Quantum Entangler a texture.
Signing off until around 9 PM EST.
This commit is contained in:
parent
58831fff7c
commit
17f29aeb7c
2 changed files with 9 additions and 1 deletions
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
|
@ -2,11 +2,13 @@ package resonantinduction.entangler;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.entity.player.EntityPlayerMP;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.world.World;
|
||||
import resonantinduction.ResonantInduction;
|
||||
import resonantinduction.base.ItemBase;
|
||||
import resonantinduction.base.Vector3;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
|
@ -28,6 +30,12 @@ public class ItemQuantumEntangler extends ItemBase
|
|||
// TODO Handheld model, render animation, energy usage (should be easy?)
|
||||
}
|
||||
|
||||
@Override
|
||||
public void registerIcons(IconRegister register)
|
||||
{
|
||||
itemIcon = register.registerIcon(ResonantInduction.PREFIX + "quantum_entangler");
|
||||
}
|
||||
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void addInformation(ItemStack itemstack, EntityPlayer entityplayer, List list, boolean flag)
|
||||
|
|
Loading…
Reference in a new issue