OSDN Git Service

8562c4701e7a6bbe1df900cb5de1b3ad40a7e326
[chemicraft/ChemiCraftNext.git] / common / pcc / chemicraft / base / compounds / CompoundWater.java
1 package pcc.chemicraft.base.compounds;
2
3 import net.minecraft.entity.Entity;
4 import net.minecraft.entity.player.EntityPlayer;
5 import net.minecraft.item.ItemStack;
6 import net.minecraft.world.World;
7 import pcc.chemicraft.util.ICompoundHandler;
8
9 /**
10  * 水の化合物ハンドラーです
11  * @author mozipi
12  */
13 public class CompoundWater implements ICompoundHandler {
14
15         @Override
16         public ItemStack onItemRightClickHandler(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer) {
17                 return null;
18         }
19
20         @Override
21         public boolean onItemUseHandler(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int par4, int par5, int par6, int par7, float par8, float par9, float par10) {
22                 return false;
23         }
24
25         @Override
26         public void onUpdateHandler(ItemStack par1ItemStack, World par2World, Entity par3Entity, int par4, boolean par5) {
27
28         }
29
30         @Override
31         public String getIconIndexHandler() {
32                 return "ChemiCraft:Composite";
33         }
34
35 }