mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-07 18:57:18 -05:00
14 lines
283 B
Go
14 lines
283 B
Go
|
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
|
||
|
)
|