28 lines
406 B
C#
28 lines
406 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DumpTruck
|
|||
|
{
|
|||
|
public enum Direction
|
|||
|
{
|
|||
|
/// Вверх
|
|||
|
/// </summary>
|
|||
|
Up = 1,
|
|||
|
/// <summary>
|
|||
|
/// Вниз
|
|||
|
/// </summary>
|
|||
|
Down = 2,
|
|||
|
/// <summary>
|
|||
|
/// Влево
|
|||
|
/// </summary>
|
|||
|
Left = 3,
|
|||
|
/// <summary>
|
|||
|
/// Вправо
|
|||
|
/// </summary>
|
|||
|
Right = 4
|
|||
|
}
|
|||
|
}
|