2011-05-15 14:06:02 +02:00

26 lines
375 B
Java

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,
/**
* Ass-pressure
*/
PHYSICAL,
}