1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-01 03:15:23 +00:00
OpenDiablo2/d2core/d2records/hireling_description_record.go

11 lines
285 B
Go
Raw Normal View History

package d2records
// HirelingDescriptions is a lookup table for hireling subtype codes
type HirelingDescriptions map[string]*HirelingDescriptionRecord
// HirelingDescriptionRecord represents is a hireling subtype
type HirelingDescriptionRecord struct {
Name string
Token string
}