1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-03 22:40:43 +00:00
OpenDiablo2/d2common/d2enum/animation_frame_direction.go
lord 33f66badfc
d2enum lint (#700)
* fixing some lint errors in d2enum

* fixed lint errors in d2enum
2020-08-06 16:45:22 -04:00

17 lines
296 B
Go

package d2enum
// AnimationFrameDirection enumerates animation frame directions used in d2datadict.MonsterSequenceFrame
type AnimationFrameDirection int
// Animation frame directions
const (
SouthWest AnimationFrameDirection = iota
NorthWest
NorthEast
SouthEast
South
West
North
East
)