mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-07 10:47:19 -05:00
9 lines
318 B
Go
9 lines
318 B
Go
|
package d2common
|
||
|
|
||
|
// a 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
|