mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
14 lines
295 B
C#
14 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,
|
||
|
|
}
|
||
|
|
}
|