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