Аркадий Радаев eda14d9810 res
2023-10-31 12:27:43 +04:00

20 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Catamaran
{
public enum DirectionType
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}