15 lines
220 B
C#
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
|
|
}
|
|
}
|