1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-04 06:50:43 +00:00
OpenDiablo2/d2common/d2enum/animation_frame_direction.go

17 lines
296 B
Go
Raw Permalink Normal View History

2020-08-01 21:55:34 +00:00
package d2enum
// AnimationFrameDirection enumerates animation frame directions used in d2datadict.MonsterSequenceFrame
type AnimationFrameDirection int
// Animation frame directions
2020-08-01 21:55:34 +00:00
const (
SouthWest AnimationFrameDirection = iota
NorthWest
NorthEast
SouthEast
South
West
North
East
)