2023-10-11 21:22:18 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DumpTruck
|
|
|
|
|
{
|
2023-10-11 22:38:57 +04:00
|
|
|
|
public enum Direction
|
2023-10-11 21:22:18 +04:00
|
|
|
|
{
|
|
|
|
|
/// Вверх
|
|
|
|
|
/// </summary>
|
|
|
|
|
Up = 1,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Вниз
|
|
|
|
|
/// </summary>
|
|
|
|
|
Down = 2,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Влево
|
|
|
|
|
/// </summary>
|
|
|
|
|
Left = 3,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Вправо
|
|
|
|
|
/// </summary>
|
|
|
|
|
Right = 4
|
|
|
|
|
}
|
|
|
|
|
}
|