// // MateWalkCommand.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.Control; namespace NosSmooth.Core.Commands.Walking; /// /// Walk the given pet to the specified position. /// /// The id of the mate. /// The target x coordinate. /// The target y coordinate. /// The distance tolerance to the target when to return successful result. /// Whether the command may be cancelled by another task within the same group. /// Whether to wait for finish of the previous task /// Whether to allow the user to cancel by taking any walk/focus/unfollow action public record MateWalkCommand ( long MateId, short TargetX, short TargetY, ushort ReturnDistanceTolerance, bool CanBeCancelledByAnother = true, bool WaitForCancellation = true, bool AllowUserCancel = true ) : ICommand, ITakeControlCommand { /// public bool CancelOnMapChange => true; }