Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Enums/WindDirection.cs
T
2025-03-07 13:16:43 +00:00

14 lines
181 B
C#

namespace SPTarkov.Server.Core.Models.Enums;
public enum WindDirection
{
EAST = 1,
NORTH = 2,
WEST = 3,
SOUTH = 4,
SE = 5,
SW = 6,
NW = 7,
NE = 8
}