1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-20 22:25:24 +00:00
OpenDiablo2/d2common/d2enum/pet_icon_type.go
lord 33f66badfc
d2enum lint (#700)
* fixing some lint errors in d2enum

* fixed lint errors in d2enum
2020-08-06 16:45:22 -04:00

14 lines
324 B
Go

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
)