1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-07 03:54:15 -04:00
OpenDiablo2/d2common/calcstring.go

9 lines
314 B
Go
Raw Normal View History

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
// todo: the logic for parsing these should exist here