8 lines
89 B
Go
8 lines
89 B
Go
package path
|
|
|
|
type Node struct {
|
|
landform *Landform
|
|
parent *Node
|
|
cost float64
|
|
}
|