Minecraft-Console-Client/MinecraftClient/Mapping/CommandBlockFlags.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
318 B
C#

namespace MinecraftClient.Mapping
{
/// <summary>
/// Represents a unit movement in the world
/// </summary>
/// <see href="http://minecraft.gamepedia.com/Coordinates"/>
public enum CommandBlockFlags
{
TrackOutput = 0x01,
IsConditional = 0x02,
Automatic = 0x04,
}
}