~ruther/NosSmooth

ref: 871522590a314dee113f67a867acd10748cbf244 NosSmooth/Local/NosSmooth.LocalBinding/Options/SceneManagerBindingOptions.cs -rw-r--r-- 775 bytes
87152259 — Rutherther fix(localbinding): correctly get pet managers 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  SceneManagerBindingOptions.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="SceneManagerBinding"/>.
/// </summary>
public class SceneManagerBindingOptions
{
    /// <summary>
    /// Gets or sets the pattern to find the focus entity method at.
    /// </summary>
    public string FocusEntityPattern { get; set; }
        = "73 00 00 00 55 8b ec b9 05 00 00 00";

    /// <summary>
    /// Gets or sets whether to hook the Focus entity function.
    /// </summary>
    public bool HookFocusEntity { get; set; } = true;
}
Do not follow this link