//
// WalkEventArgs.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.Hooks;
///
/// The event args for event in .
///
public class WalkEventArgs
{
///
/// Initializes a new instance of the class.
///
/// The target x coordinate.
/// The target y coordinate.
public WalkEventArgs(int targetX, int targetY)
{
TargetX = targetX;
TargetY = targetY;
}
///
/// Gets the target x coordinate.
///
public int TargetX { get; }
///
/// Gets the target y coordinate.
///
public int TargetY { get; }
}