2022-09-12 22:12:40 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Artilleries
|
|
|
|
|
{
|
2022-09-30 20:17:08 +04:00
|
|
|
|
public enum Direction
|
2022-09-12 22:12:40 +04:00
|
|
|
|
{
|
|
|
|
|
Up = 1,
|
|
|
|
|
Down = 2,
|
|
|
|
|
Left = 3,
|
2022-09-26 22:02:22 +04:00
|
|
|
|
Right = 4,
|
|
|
|
|
None
|
2022-09-12 22:12:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|