1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-04 12:15:23 +00:00
OpenDiablo2/d2core/d2records/monster_mode_record.go

12 lines
242 B
Go
Raw Normal View History

package d2records
// MonModes stores all of the GemsRecords
type MonModes map[string]*MonModeRecord
// MonModeRecord is a representation of a single row of Monmode.txt
type MonModeRecord struct {
Name string
Token string
Code string
}