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

20 lines
441 B
Go

package d2records
// Properties stores all of the PropertyRecords
type Properties map[string]*PropertyRecord
// PropertyStatRecord contains stat information for a property
type PropertyStatRecord struct {
SetID int
Value int
FunctionID int
StatCode string
}
// PropertyRecord is a representation of a single row of properties.txt
type PropertyRecord struct {
Code string
Active string
Stats [7]*PropertyStatRecord
}