Files
old-9heroja/configuration/config.go

16 lines
156 B
Go
Raw Normal View History

2023-11-21 20:12:56 +01:00
package configuration
type Direction int
const (
North Direction = iota
East
South
West
NorthEast
SouthEast
SouthWest
NorthWest
2023-11-28 07:29:17 +01:00
PreviouslyHeld
2023-11-21 20:12:56 +01:00
)