mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-04 09:17:17 -05:00
271673851a
* Added RecordManager implementation to remove d2datadict singletons * fix object lookup test
20 lines
441 B
Go
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
|
|
}
|