PIbd-23-Mamadosimov-Z-Sh-Se.../Lab1/SelfPropelledArtilleryUnit/Direction.cs

15 lines
220 B
C#
Raw Permalink Normal View History

2023-10-13 10:51:06 +04:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SelfPropelledArtilleryUnit
{
public enum Direction
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}