1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2025-02-20 15:37:31 -05:00
OpenDiablo2/d2core/d2records/gamble_record.go

11 lines
235 B
Go
Raw Normal View History

2020-10-11 00:45:28 +02:00
package d2records
// Gamble is a map of GambleRecords
2020-10-11 00:45:28 +02:00
type Gamble map[string]*GambleRecord
// GambleRecord is a representation of an item type that can be gambled for at vendors
2020-10-11 00:45:28 +02:00
type GambleRecord struct {
Name string
Code string
}