root/src/BRAINSFramework/PathFinding/PathFinder.cs
| 13 | 21 | ||
|---|---|---|---|
11 | { | 11 | { |
12 | public List<int> BlockedTiles = new List<int>(); | 12 | public List<int> BlockedTiles = new List<int>(); |
13 | 13 | ||
14 | public PriorityQueueB<PathfinderNode> openQueue; | 14 | internal PriorityQueueB<PathfinderNode> openQueue; |
15 | 15 | ||
16 | public List<PathfinderNode> closeList; | 16 | public List<PathfinderNode> closeList; |
17 | 17 |
Download diff