PIbd-23-Mamadosimov-Z-Sh-Se.../Lab1/SelfPropelledArtilleryUnit/Direction.cs
Ziyoviddin Mamadosimov 95b7b05dc7 Lab1
2023-10-13 10:51:06 +04:00

15 lines
220 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SelfPropelledArtilleryUnit
{
public enum Direction
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}