mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
44 lines
1.3 KiB
Java
44 lines
1.3 KiB
Java
|
package com.minelittlepony.unicopia.spell;
|
||
|
|
||
|
import net.minecraft.entity.Entity;
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.util.math.BlockPos;
|
||
|
import net.minecraft.util.EnumFacing;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
/**
|
||
|
* Interface for right-click actions.
|
||
|
*
|
||
|
*/
|
||
|
public interface IUseAction {
|
||
|
|
||
|
/**
|
||
|
* Triggered when the player right clicks a block
|
||
|
*
|
||
|
* @param stack The current itemstack
|
||
|
* @param player The player
|
||
|
* @param world The player's world
|
||
|
* @param pos The location clicked
|
||
|
* @param side The side of the block clicked
|
||
|
* @param hitX X offset inside the block
|
||
|
* @param hitY Y offset inside the block
|
||
|
* @param hitZ Z offset inside the block
|
||
|
*
|
||
|
* @return ActionResult for the type of action to perform
|
||
|
*/
|
||
|
public ActionResult onUse(ItemStack stack, EntityPlayer player, World world, BlockPos pos, EnumFacing side, float hitX, float hitY, float hitZ);
|
||
|
|
||
|
/**
|
||
|
* Triggered when the player right clicks
|
||
|
*
|
||
|
* @param stack The current itemstack
|
||
|
* @param player The player
|
||
|
* @param world The player's world
|
||
|
* @param hitEntity The entity in focus, if any
|
||
|
*
|
||
|
* @return ActionResult for the type of action to perform
|
||
|
*/
|
||
|
public ActionResult onUse(ItemStack stack, EntityPlayer player, World world, Entity hitEntity);
|
||
|
}
|