1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-13 03:00:42 +00:00
OpenDiablo2/d2core/d2records/gamble_record.go
2020-10-21 23:41:21 -07:00

11 lines
235 B
Go

package d2records
// Gamble is a map of GambleRecords
type Gamble map[string]*GambleRecord
// GambleRecord is a representation of an item type that can be gambled for at vendors
type GambleRecord struct {
Name string
Code string
}