mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-11 19:17:09 -05:00
22 lines
614 B
Go
22 lines
614 B
Go
package d2enum
|
|
|
|
// AnimationFrame represents a single frame of animation.
|
|
type AnimationFrame int
|
|
|
|
const (
|
|
// AnimationFrameNoEvent represents an animation frame with no event
|
|
AnimationFrameNoEvent AnimationFrame = iota
|
|
|
|
// AnimationFrameAttack represents an animation frame with an attack event
|
|
AnimationFrameAttack
|
|
|
|
// AnimationFrameMissile represents an animation frame with a missile event
|
|
AnimationFrameMissile
|
|
|
|
// AnimationFrameSound represents an animation frame with a sound event
|
|
AnimationFrameSound
|
|
|
|
// AnimationFrameSkill represents an animation frame with a skill event
|
|
AnimationFrameSkill
|
|
)
|