1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-28 10:05:23 +00:00
OpenDiablo2/d2common/d2enum/animation_frame.go

14 lines
265 B
Go
Raw Normal View History

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