~ruther/NosSmooth.Local

ref: 7535dd93e52f60b543f328685a6e6333a37649eb NosSmooth.Local/src/Core/NosSmooth.LocalBinding/Options/PeriodicBindingOptions.cs -rw-r--r-- 619 bytes
7535dd93 — Rutherther feat(bindings): add periodic binding and thread synchronizer 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  PeriodicBindingOptions.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="PeriodicBinding"/>.
/// </summary>
public class PeriodicBindingOptions
{
    /// <summary>
    /// Gets or sets the configuration for any periodic function hook.
    /// </summary>
    public HookOptions PeriodicHook { get; set; }
        = new HookOptions(true, "55 8B EC 53 56 83 C4", 0);
}
Do not follow this link