mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-26 00:46:46 +00:00
Theres documentation at https://sylvessa.zip/fourkit/ now. And a bunch of other changes. Check the discord server for a more comprehensive list
27 lines
685 B
C#
27 lines
685 B
C#
namespace Minecraft.Server.FourKit.Block;
|
|
|
|
/// <summary>
|
|
/// Represents the action type for a player interaction.
|
|
/// </summary>
|
|
public enum Action
|
|
{
|
|
/// <summary>Left-clicking the air.</summary>
|
|
LEFT_CLICK_AIR = 0,
|
|
|
|
/// <summary>Left-clicking a block.</summary>
|
|
LEFT_CLICK_BLOCK = 1,
|
|
|
|
/// <summary>Right-clicking the air.</summary>
|
|
RIGHT_CLICK_AIR = 2,
|
|
|
|
/// <summary>Right-clicking a block.</summary>
|
|
RIGHT_CLICK_BLOCK = 3,
|
|
|
|
/// <summary>
|
|
/// Stepping onto or into a block (Ass-pressure).
|
|
/// Examples: Jumping on soil, Standing on pressure plate,
|
|
/// Triggering redstone ore, Triggering tripwire.
|
|
/// </summary>
|
|
PHYSICAL = 4
|
|
}
|