PIBD14-BOYKO-M.S.SuperEasyS.../ProjectElectroTrans/MovementStrategy/MovementDirection.cs

22 lines
364 B
C#
Raw Permalink Normal View History

2024-02-28 23:06:50 +04:00
namespace ProjectElectroTrans.MovementStrategy;
2024-02-14 15:48:47 +04:00
2024-02-28 23:06:50 +04:00
public enum MovementDirection
2024-02-14 15:48:47 +04:00
{
/// <summary>
/// Вверх
/// </summary>
Up = 1,
/// <summary>
/// Вниз
/// </summary>
Down = 2,
/// <summary>
/// Влево
/// </summary>
Left = 3,
/// <summary>
/// Вправо
/// </summary>
Right = 4
2024-02-28 23:06:50 +04:00
}