OpenDiablo2/d2common/d2enum/item_affix_type.go

20 lines
348 B
Go

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
)