1
0
This repository has been archived on 2024-09-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PathFinding_in_Go/node.go
2021-03-28 20:25:57 +01:00

9 lines
95 B
Go

package main
const MAX_EDGES int = 3
type Node struct {
Data City
Edges [MAX_EDGES]Edge
}