PIbd-11_Abakarov_A.A_Simple/ProjectFighterJet/MovementStrategy/MovementDirection.cs

23 lines
364 B
C#

namespace ProjectFighterJet.MovementStrategy;
public enum MovementDirection
{
/// <summary>
/// Вверх
/// </summary>
Up = 1,
/// <summary>
/// Вниз
/// </summary>
Down = 2,
/// <summary>
/// Влево
/// </summary>
Left = 3,
/// <summary>
/// Вправо
/// </summary>
Right = 4
}