1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-19 21:55:24 +00:00
OpenDiablo2/d2core/d2records/gamble_record.go

11 lines
235 B
Go
Raw Normal View History

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