namespace Minecraft.Server.FourKit.Block; /// /// Represents the action type for a player interaction. /// public enum Action { /// Left-clicking the air. LEFT_CLICK_AIR = 0, /// Left-clicking a block. LEFT_CLICK_BLOCK = 1, /// Right-clicking the air. RIGHT_CLICK_AIR = 2, /// Right-clicking a block. RIGHT_CLICK_BLOCK = 3, /// /// Stepping onto or into a block (Ass-pressure). /// Examples: Jumping on soil, Standing on pressure plate, /// Triggering redstone ore, Triggering tripwire. /// PHYSICAL = 4 }