1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-05 19:14:14 -04:00
OpenDiablo2/d2core/d2records/monster_mode_record.go

12 lines
245 B
Go
Raw Normal View History

package d2records
2020-12-18 01:40:54 -05:00
// MonModes stores all of the MonModeRecords
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
}