1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-27 09:35:29 +00:00
OpenDiablo2/d2core/d2records/body_locations_record.go

11 lines
261 B
Go
Raw Normal View History

package d2records
// BodyLocations contains the body location records
type BodyLocations map[string]*BodyLocationRecord
// BodyLocationRecord describes a body location that items can be equipped to
type BodyLocationRecord struct {
Name string
Code string
}