OSDN Git Service

W.I.P. VI: Automap Commanded by local event bus
[automap/automap.git] / Automap / Data / RunState.cs
1 using System;
2 namespace Automap
3 {
4         public enum RunState : byte
5         {
6                 Stop = 0x00,
7                 Run = 0x01,
8                 Snapshot = 0x02,
9         }
10 }
11