Files
SPT-Server-Build/Core/Models/Enums/WindDirection.cs
T
2025-01-07 09:19:59 +00:00

12 lines
165 B
C#

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