Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / event / block / Action.java
@vlad20012 vlad20012 on 24 Feb 2017 506 bytes initial
package org.bukkit.event.block;

public enum Action
{

	/**
	 * Left-clicking a block
	 */
	LEFT_CLICK_BLOCK,
	/**
	 * Right-clicking a block
	 */
	RIGHT_CLICK_BLOCK,
	/**
	 * Left-clicking the air
	 */
	LEFT_CLICK_AIR,
	/**
	 * Right-clicking the air
	 */
	RIGHT_CLICK_AIR,
	/**
	 * Stepping onto or into a block (Ass-pressure)
	 * <p>
	 * Examples:
	 * <ul>
	 * <li>Jumping on soil
	 * <li>Standing on pressure plate
	 * <li>Triggering redstone ore
	 * <li>Triggering tripwire
	 * </ul>
	 */
	PHYSICAL,
}