mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
271673851a
* Added RecordManager implementation to remove d2datadict singletons * fix object lookup test
13 lines
459 B
Go
13 lines
459 B
Go
package d2records
|
|
|
|
// Calculations is where calculation records are stored
|
|
type Calculations map[string]*CalculationRecord
|
|
|
|
// CalculationRecord The skillcalc.txt and misscalc.txt files are essentially lookup tables
|
|
// for the Skills.txt and Missiles.txt Calc functions To avoid duplication (since they have
|
|
// identical fields) they are both represented by the CalculationRecord type
|
|
type CalculationRecord struct {
|
|
Code string
|
|
Description string
|
|
}
|