2023-11-14 00:52:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-10-03 01:16:11 +04:00
|
|
|
|
namespace ProjectGasolineTanker
|
2023-11-14 00:52:16 +04:00
|
|
|
|
{
|
2024-10-03 01:16:11 +04:00
|
|
|
|
public enum DirectionType
|
2023-11-14 00:52:16 +04:00
|
|
|
|
{
|
|
|
|
|
Up = 1,
|
|
|
|
|
Down = 2,
|
|
|
|
|
Left = 3,
|
|
|
|
|
Right = 4
|
|
|
|
|
}
|
2024-10-03 01:16:11 +04:00
|
|
|
|
}
|