1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-28 06:06:29 -04:00
OpenDiablo2/d2common/d2fileformats/d2animdata/events.go

14 lines
283 B
Go
Raw Normal View History

package d2animdata
// AnimationEvent represents an event that can happen on a frame of animation
type AnimationEvent byte
// Animation events
const (
AnimationEventNone AnimationEvent = iota
AnimationEventAttack
AnimationEventMissile
AnimationEventSound
AnimationEventSkill
)