mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
9e58b134e5
* Refactored animation mode enum * More d2enum changes * Refactored tile enum * Refactored weapon class enum * Refactored more enums * Refactored item event enum * Fixed init_functions animation mode * Removed string2enum from MonsterAnimationMode * Refactored ItemStatCost description * Last enum lint errors * Regenerated monster stringer file
14 lines
265 B
Go
14 lines
265 B
Go
package d2enum
|
|
|
|
// AnimationFrame represents a single frame of animation.
|
|
type AnimationFrame int
|
|
|
|
// AnimationFrame types
|
|
const (
|
|
AnimationFrameNoEvent AnimationFrame = iota
|
|
AnimationFrameAttack
|
|
AnimationFrameMissile
|
|
AnimationFrameSound
|
|
AnimationFrameSkill
|
|
)
|