Core/src/main/java/eu/univento/core/api/customitems/actions/InteractBlockAction.java

20 lines
507 B
Java

/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.core.api.customitems.actions;
import eu.univento.core.api.player.CustomPlayer;
import org.bukkit.block.Block;
import org.bukkit.block.BlockFace;
import org.bukkit.event.block.Action;
/**
* @author joethei
* @version 1.0
*/
public interface InteractBlockAction {
void onInteract(CustomPlayer player, Action action, Block block, BlockFace blockFace);
}