mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-04 09:17:17 -05:00
33f66badfc
* fixing some lint errors in d2enum * fixed lint errors in d2enum
17 lines
296 B
Go
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
|
|
)
|