1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-12 02:30:43 +00:00
OpenDiablo2/d2core/d2records/cube_type_record.go

11 lines
232 B
Go
Raw Normal View History

package d2records
// CubeTypes is a map of CubeTypeRecords
type CubeTypes map[string]*CubeTypeRecord
// CubeTypeRecord is a name and 3-character token for cube item types
type CubeTypeRecord struct {
Name string
Token string
}