using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectElectricLocomotive.MovementStrategy;
public enum MovementDirection
{
///
/// Вверх
///
Up = 1,
///
/// Вниз
///
Down = 2,
///
/// Влево
///
Left = 3,
///
/// Вправо
///
Right = 4
}