Polevoy S.V Lab_work1 #1

Merged
eegov merged 9 commits from LabWork01 into master 2022-09-30 09:08:49 +04:00
Showing only changes of commit 527aa27f8f - Show all commits

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
}
}