// // WalkCancelReason.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. using NosSmooth.Core.Commands; namespace NosSmooth.LocalClient.CommandHandlers.Walk; /// /// Reason of cancellation of . /// public enum WalkCancelReason { /// /// There was an unknown cancel reason. /// Unknown, /// /// The user walked and CancelOnUserMove flag was set. /// UserWalked, /// /// The map has changed during the walk was in progress. /// MapChanged, /// /// The client was not walking for too long. /// NotWalkingTooLong, }