AirScout/AirScout.Core/Enums.cs

33 wiersze
490 B
C#
Czysty Zwykły widok Historia

2019-03-19 21:09:03 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AirScout.Core
{
public enum AIRSCOUTPATHMODE
{
NONE = 0,
SINGLE = 1,
MULTI = 2
}
public enum AIRSCOUTLIFEMODE
{
NONE = 0,
LIFE = 1,
HISTORY = 2
}
public enum AIRSCOUTPLAYMODE
{
NONE = 0,
PAUSE = 1,
FASTBACK = 2,
BACK = 3,
FORWARD = 4,
FASTFORWARD = 5
}
}