// // PetManagerBindingOptions.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.Objects; namespace NosSmooth.LocalBinding.Options; /// /// Options for . /// public class PetManagerBindingOptions { /// /// Gets or sets the pattern of a pet walk function. /// public string PetWalkPattern { get; set; } = "55 8b ec 83 c4 e4 53 56 57 8b f9 89 55 fc 8b d8 c6 45 fb 00"; /// /// Gets or sets whether to hook the pet walk function. /// public bool HookPetWalk { get; set; } = true; }