1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-04 15:00:42 +00:00
OpenDiablo2/d2common/d2enum/item_affix_type.go

20 lines
348 B
Go
Raw Permalink Normal View History

package d2enum
// ItemAffixSuperType represents a item affix super type
type ItemAffixSuperType int
// Super types
const (
ItemAffixPrefix ItemAffixSuperType = iota
ItemAffixSuffix
)
// ItemAffixSubType represents a item affix sub type
type ItemAffixSubType int
// Sub types
const (
ItemAffixCommon ItemAffixSubType = iota
ItemAffixMagic
)