Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Enums/WindDirection.cs
T
2025-06-18 17:09:20 +00:00

14 lines
182 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,
}