mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
12 lines
417 B
Java
12 lines
417 B
Java
package com.hbm.items;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.client.event.MouseEvent;
|
|
|
|
public interface ISyncButtons {
|
|
|
|
public boolean canReceiveMouse(EntityPlayer player, ItemStack stack, MouseEvent event, int button, boolean buttonstate);
|
|
public void receiveMouse(EntityPlayer player, ItemStack stack, int button, boolean buttonstate);
|
|
}
|