// // PetWalkEventArgs.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.LocalBinding.Structs; namespace NosSmooth.LocalBinding.EventArgs; /// /// Event args for pet walking. /// public class PetWalkEventArgs : WalkEventArgs { /// /// Gets the pet manager for the pet that is moving. /// public PetManager PetManager { get; } /// /// Initializes a new instance of the class. /// /// The pet manager of the walking pet. /// The x coordinate to walk to. /// The y coordinate to walk to. public PetWalkEventArgs(PetManager petManager, ushort x, ushort y) : base(x, y) { PetManager = petManager; } }