1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-06 11:34:15 -04:00
OpenDiablo2/d2common/d2enum/animation_frame.go

14 lines
265 B
Go
Raw Normal View History

package d2enum
2020-06-30 09:58:53 -04:00
// AnimationFrame represents a single frame of animation.
type AnimationFrame int
// AnimationFrame types
const (
2020-06-30 09:58:53 -04:00
AnimationFrameNoEvent AnimationFrame = iota
AnimationFrameAttack
AnimationFrameMissile
AnimationFrameSound
AnimationFrameSkill
)