mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-09 01:56:47 -05:00
14 lines
251 B
Go
14 lines
251 B
Go
package d2enum
|
|
|
|
// AnimationFrameEvent enumerates events used in d2datadict.MonsterSequenceFrame
|
|
type AnimationFrameEvent int
|
|
|
|
// Animation frame events
|
|
const (
|
|
NoEvent AnimationFrameEvent = iota
|
|
MeleeAttack
|
|
MissileAttack
|
|
PlaySound
|
|
LaunchSpell
|
|
)
|