Minecraft-Console-Client/MinecraftClient/Mapping/CommandBlockMode.cs
BruceChen 1d52d1eadd
Fix all warnings & Trim (#2226)
* Fix AutoFishing crash
* Fix all warnings
* Remove DotNetZip.
* Fix the usage of HttpClient.
2022-10-02 18:31:08 +08:00

13 lines
295 B
C#

namespace MinecraftClient.Mapping
{
/// <summary>
/// Represents a unit movement in the world
/// </summary>
/// <see href="http://minecraft.gamepedia.com/Coordinates"/>
public enum CommandBlockMode
{
Sequence = 0,
Auto = 1,
Redstone = 2,
}
}