mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-16 17:35:57 -05:00
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
|
||
|
}
|