// // WalkUnfinishedReason.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NosSmooth.LocalClient.CommandHandlers.Walk; /// /// Reason for not finishing a walk. /// public enum WalkUnfinishedReason { /// /// There was an unknown unfinished reason. /// Unknown, /// /// The client could not find path to the given location. /// /// /// The user walked just some part of the path. /// PathNotFound, /// /// The user has took an action that has cancelled the walk. /// UserAction, /// /// There was another walk action that cancelled this one. /// AnotherTask }