root/src/BRAINSFramework/PathFinding/PathFinder.cs

1321
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