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

14 lines
321 B
Go
Raw Normal View History

package d2enum
// PetIconType determines the pet icon type
type PetIconType int
// Pet icon types
//The information has been gathered from [https://d2mods.info/forum/kb/viewarticle?a=355]
const (
NoIcon PetIconType = iota
ShowIconOnly
ShowIconAndQuantity //Quantity, such as the number of skeletons
ShowIconOnly2
)