PIbd-14_Pruidze_I.K_Simple_.../ProjectCruiser/MoveStrategy/MovementDirection.cs

11 lines
180 B
C#
Raw Permalink Normal View History

2024-06-12 19:21:59 +04:00
namespace ProjectCruiser.MoveStrategy;
// Направление перемещения
public enum MovementDirection
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}