0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00
server/project/src/models/enums/WindDirection.ts
2023-03-03 15:23:46 +00:00

11 lines
138 B
TypeScript

export enum WindDirection
{
EAST = 1,
NORTH = 2,
WEST = 3,
SOUTH = 4,
SE = 5,
SW = 6,
NW = 7,
NE = 8
}