1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-02 22:11:10 +00:00
OpenDiablo2/d2core/d2records/elemtype_record.go
gravestench 271673851a
Added RecordManager implementation to remove d2datadict singletons (#736)
* Added RecordManager implementation to remove d2datadict singletons

* fix object lookup test
2020-09-19 14:33:40 -04:00

14 lines
299 B
Go

package d2records
// ElemTypes stores the ElemTypeRecords
type ElemTypes map[string]*ElemTypeRecord
// ElemTypeRecord represents a single line in ElemType.txt
type ElemTypeRecord struct {
// ElemType Elemental damage type name
ElemType string
// Code Elemental damage type code
Code string
}