1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-22 07:05:23 +00:00
OpenDiablo2/d2common/d2enum/npc_action_type.go
dk 1654fd7e90
Removing lint errors in npc.go, mapstamp.go (#597)
- made an enum for NPCActionType to get rid of magic numbers
- moved the enum to d2enum
- fixed lint errors in npc.go
- fixed lint errors in mapstamp.go (because it was using npc.go)
2020-07-17 18:51:19 -04:00

15 lines
282 B
Go

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
)