Mekanism-tilera-Edition/common/cofh/api/block/IBlockDebug.java
2013-11-30 01:02:44 -05:00

33 lines
850 B
Java

package cofh.api.block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.IBlockAccess;
import net.minecraftforge.common.ForgeDirection;
/**
* Implement this interface on blocks which have some debug method which can be activated via a tool or other means.
*
* @author King Lemming
*
*/
public interface IBlockDebug {
/**
* This function debugs a block.
*
* @param world
* Reference to the world.
* @param x
* X coordinate of the block.
* @param y
* Y coordinate of the block.
* @param z
* Z coordinate of the block.
* @param side
* The side of the block.
* @param player
* Player doing the debugging.
*/
public void debugBlock(IBlockAccess world, int x, int y, int z, ForgeDirection side, EntityPlayer player);
}