mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-12 07:16:57 -05:00
9 lines
178 B
Go
9 lines
178 B
Go
|
package d2records
|
||
|
|
||
|
// RareItemAffix described both rare prefixes and suffixes
|
||
|
type RareItemAffix struct {
|
||
|
Name string
|
||
|
IncludedTypes []string
|
||
|
ExcludedTypes []string
|
||
|
}
|