mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-29 13:04:59 +00:00
10 lines
146 B
C#
10 lines
146 B
C#
|
|
namespace MinecraftClient.Pathing.Core
|
||
|
|
{
|
||
|
|
public enum ParkourProfile
|
||
|
|
{
|
||
|
|
None = 0,
|
||
|
|
Default = 1,
|
||
|
|
Sidewall = 2
|
||
|
|
}
|
||
|
|
}
|