1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-12 10:40:42 +00:00
OpenDiablo2/d2core/d2records/unique_appellations_record.go

11 lines
293 B
Go
Raw Permalink Normal View History

package d2records
// UniqueAppellations contains all of the UniqueAppellationRecords
type UniqueAppellations map[string]*UniqueAppellationRecord
// UniqueAppellationRecord described the extra suffix of a unique monster name
type UniqueAppellationRecord struct {
// The title
Name string
}