~ruther/NosSmooth.Local

ref: 311bc033a111d2e125fd3821578d944c810391a8 NosSmooth.Local/src/Core/NosSmooth.LocalBinding/Options/PetManagerBindingOptions.cs -rw-r--r-- 660 bytes
311bc033 — Rutherther feat(binding): make events follow common convention, using EventHandler 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  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;

/// <summary>
/// Options for <see cref="PetManagerBinding"/>.
/// </summary>
public class PetManagerBindingOptions
{
    /// <summary>
    /// Gets or sets the configuration for pet walk function hook.
    /// </summary>
    public HookOptions PetWalkHook { get; set; }
        = new HookOptions(false, "55 8b ec 83 c4 e4 53 56 57 8b f9 89 55 fc 8b d8 c6 45 fb 00", 0);
}
Do not follow this link