mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
9 lines
112 B
Go
9 lines
112 B
Go
package d2records
|
|
|
|
type Gamble map[string]*GambleRecord
|
|
|
|
type GambleRecord struct {
|
|
Name string
|
|
Code string
|
|
}
|