// Copyright (c) 2013 Robert Rouhani and other contributors (see CONTRIBUTORS file). // Licensed under the MIT License - https://raw.github.com/Robmaister/SharpNav/master/LICENSE using System; namespace SharpNav { /// /// Determine which list the node is in. /// [Flags] public enum NodeFlags { /// /// Open list contains nodes to examine. /// Open = 0x01, /// /// Closed list stores path. /// Closed = 0x02 } }