1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-10-06 10:14:00 -04:00
OpenDiablo2/d2common/d2enum/animation_frame_event.go

13 lines
225 B
Go
Raw Normal View History

2020-08-01 17:55:34 -04:00
package d2enum
// AnimationFrameEvent enumerates events used in d2datadict.MonsterSequenceFrame
type AnimationFrameEvent int
const (
NoEvent AnimationFrameEvent = iota
MeleeAttack
MissileAttack
PlaySound
LaunchSpell
)