OSDN Git Service

Added Notation feature
[automap/automap.git] / Automap / Data / RunState.cs
1 using System;
2 namespace Automap
3 {
4         /// <summary>
5         /// Command Type
6         /// </summary>
7         public enum RunState : byte
8         {
9                 Stop = 0x00,
10                 Run = 0x01,
11                 Snapshot = 0x02,
12                 Notation = 0x03,
13         }
14 }
15