mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
ff4f0b0bfa
Typos located using misspell: https://github.com/client9/misspell Formatting done using goimports: https://godoc.org/golang.org/x/tools/cmd/goimports
10 lines
317 B
Go
10 lines
317 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
|