1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-20 14:15:23 +00:00
OpenDiablo2/d2common/d2enum/npc_action_type.go

15 lines
282 B
Go
Raw Normal View History

package d2enum
// NPCActionType determines composite mode animations for NPC's as they move around
type NPCActionType int
// NPCAction types
// TODO: Figure out what 1-3 are for
const (
NPCActionInvalid NPCActionType = iota
NPCAction1
NPCAction2
NPCAction3
NPCActionSkill1
)