Minecraft-Console-Client/MinecraftClient/EntityHandler/EntityPose.cs
2022-12-23 00:50:20 +08:00

13 lines
241 B
C#

namespace MinecraftClient.EntityHandler
{
public enum EntityPose
{
Standing = 0,
FallFlying = 1,
Sleeping = 2,
Swimming = 3,
SpinAttack = 4,
Sneaking = 5,
Dying = 6,
}
}