mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-05 16:17:45 -05:00
8e41133f39
- moved contents of `d2common/math.go` into `d2math/math.go` - removed lint errors from files in d2common
10 lines
365 B
Go
10 lines
365 B
Go
package d2common
|
|
|
|
// CalcString is a type of string often used in datafiles to specify
|
|
// a value that is calculated dynamically based on the stats of the relevant
|
|
// source, for instance a missile might have a movement speed of lvl*2
|
|
type CalcString string
|
|
|
|
// Issue #689
|
|
// info about calcstrings can be found here: https://d2mods.info/forum/kb/viewarticle?a=371
|