using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MinecraftClient.Mapping
{
///
/// Represents a unit movement in the world
///
///
public enum CommandBlockMode
{
Sequence = 0,
Auto = 1,
Redstone = 2,
}
}