mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
namespace MinecraftClient.Protocol
|
|
{
|
|
public enum EntityActionType
|
|
{
|
|
StartSneaking = 0,
|
|
StopSneaking = 1,
|
|
LeaveBed = 2,
|
|
StartSprinting = 3,
|
|
StopSprinting = 4,
|
|
StartJumpWithHorse = 5,
|
|
StopJumpWithHorse = 6,
|
|
OpenHorseInventory = 7,
|
|
StartFlyingWithElytra = 8,
|
|
}
|
|
}
|