namespace PathFinding { public enum HaltCondition { /// /// Do not stop until you reach the collection boundary. /// None, /// /// Halt after encountering a non-null element. /// AfterCollide } } public enum Distance { OneStep, MultiStep }