1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-11 10:20:41 +00:00
OpenDiablo2/d2core/d2records/component_codes_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

12 lines
328 B
Go

package d2records
// ComponentCodes is a lookup table for DCC Animation Component Subtype,
// it links hardcoded data with the txt files
type ComponentCodes map[string]*ComponentCodeRecord
// ComponentCodeRecord represents a single row from compcode.txt
type ComponentCodeRecord struct {
Component string
Code string
}