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