summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/event/block/Action.java
blob: 0fc3af1a725a6dd4ca49211d73fdb6122ab91037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)
     */
    PHYSICAL,
}