mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
11 lines
235 B
Go
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
|
|
}
|