Добавлен класс Direction

This commit is contained in:
Сергей Полевой 2022-09-12 22:12:40 +04:00
parent b145445dfc
commit 527aa27f8f

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Artilleries
{
internal enum Direction
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}