using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MinecraftClient.Mapping { /// /// Represents a unit movement in the world /// /// public enum CommandBlockFlags { TrackOutput = 0x01, IsConditional = 0x02, Automatic = 0x04, } }