20 lines
284 B
C#
Raw Normal View History

2023-10-31 12:23:01 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Catamaran
{
2023-10-31 12:27:43 +04:00
public enum DirectionType
2023-10-31 12:23:01 +04:00
{
Up = 1,
Down = 2,
2023-10-31 12:27:43 +04:00
2023-10-31 12:23:01 +04:00
Left = 3,
2023-10-31 12:27:43 +04:00
2023-10-31 12:23:01 +04:00
Right = 4
}
}